Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
cicd: fix env variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
seppzer0 committed Oct 10, 2023
1 parent df465ff commit 50afb74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: docker build . -t gcr.io/seppzer0/ndvwa
- name: Publish
run: |
if [ "${{ env.IS_PRERELEASE }}" == "false" ]; then
if [ "${{ env.SKIP_UPLOAD }}" == "false" ]; then
docker push gcr.io/seppzer0/ndvwa
else
echo "[ * ] Docker image upload skipped."

0 comments on commit 50afb74

Please sign in to comment.