We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c28ff68 commit cce3addCopy full SHA for cce3add
.github/workflows/docker-image.yml
@@ -74,14 +74,14 @@ jobs:
74
75
# deploy nightly
76
- name: Deploy docker image to staging
77
- if: github.event_name != 'release'
+ if: ${{ github.event_name != 'release' }}
78
env:
79
EXO_TOKEN: ${{ secrets.EXO_TOKEN }}
80
run: bunx exoframe -u -c exoframe-nightly.json -e https://exoframe.codezen.net -t $EXO_TOKEN
81
82
# deploy to prod
83
- name: Deploy docker image to production
84
- if: github.event_name == 'release'
+ if: ${{ github.event_name == 'release' }}
85
86
87
run: bunx exoframe -u -e https://exoframe.codezen.net -t $EXO_TOKEN
0 commit comments