We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 558e7f7 commit f89fde7Copy full SHA for f89fde7
.github/workflows/workflow.yml
@@ -76,8 +76,8 @@ jobs:
76
uses: docker/build-push-action@v4
77
with:
78
context: .
79
- push: ${{env.is_publish}}
80
- load: ${{env.is_publish == false}}
+ push: ${{env.is_publish == true}}
+ load: ${{env.is_publish != true}}
81
tags: |
82
${{env.docker_image}}:local
83
${{steps.meta.outputs.tags}}
@@ -86,11 +86,11 @@ jobs:
86
cache-to: type=local,mode=max,dest=${{env.docker_cache_out}}
87
88
- name: Test Docker image
89
- if: env.is_publish == false
+ if: env.is_publish != true
90
run: make test-ci
91
92
- name: Publish output as build artifact
93
94
uses: actions/upload-artifact@v3
95
96
name: gitstats-output
0 commit comments