Skip to content

Commit cce3add

Browse files
committed
Fix release checks in github workflow
1 parent c28ff68 commit cce3add

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker-image.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ jobs:
7474

7575
# deploy nightly
7676
- name: Deploy docker image to staging
77-
if: github.event_name != 'release'
77+
if: ${{ github.event_name != 'release' }}
7878
env:
7979
EXO_TOKEN: ${{ secrets.EXO_TOKEN }}
8080
run: bunx exoframe -u -c exoframe-nightly.json -e https://exoframe.codezen.net -t $EXO_TOKEN
8181

8282
# deploy to prod
8383
- name: Deploy docker image to production
84-
if: github.event_name == 'release'
84+
if: ${{ github.event_name == 'release' }}
8585
env:
8686
EXO_TOKEN: ${{ secrets.EXO_TOKEN }}
8787
run: bunx exoframe -u -e https://exoframe.codezen.net -t $EXO_TOKEN

0 commit comments

Comments
 (0)