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