We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06981df commit 7f3eda8Copy full SHA for 7f3eda8
.github/workflows/image-generations.yml
@@ -46,7 +46,7 @@ jobs:
46
47
- name: Build and push Docker image (release)
48
uses: docker/build-push-action@v5
49
- if: ${{ inputs.prerelease == 'false' }}
+ if: ${{ !inputs.prerelease }}
50
with:
51
context: .
52
file: ./${{ matrix.app }}/Dockerfile
@@ -60,7 +60,7 @@ jobs:
60
61
- name: Build and push Docker image (prerelease)
62
63
- if: ${{ inputs.prerelease == 'true' }}
+ if: ${{ inputs.prerelease }}
64
65
66
0 commit comments