Skip to content

Commit 7f3eda8

Browse files
authored
fix: production release workflow (#430)
1 parent 06981df commit 7f3eda8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/image-generations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Build and push Docker image (release)
4848
uses: docker/build-push-action@v5
49-
if: ${{ inputs.prerelease == 'false' }}
49+
if: ${{ !inputs.prerelease }}
5050
with:
5151
context: .
5252
file: ./${{ matrix.app }}/Dockerfile
@@ -60,7 +60,7 @@ jobs:
6060

6161
- name: Build and push Docker image (prerelease)
6262
uses: docker/build-push-action@v5
63-
if: ${{ inputs.prerelease == 'true' }}
63+
if: ${{ inputs.prerelease }}
6464
with:
6565
context: .
6666
file: ./${{ matrix.app }}/Dockerfile

0 commit comments

Comments
 (0)