Skip to content

Commit

Permalink
Update docker.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Nov 13, 2023
1 parent 2c20c5c commit ce0c33b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:
echo "DEPLOY_IMAGE=false" >> "$GITHUB_ENV"
- name: DEPLOY_IMAGE is true
if: ${{ env.DEPLOY_IMAGE }}
if: ${{ env.DEPLOY_IMAGE == 'true' }}
run: |
echo "$DEPLOY_IMAGE"
- name: DEPLOY_IMAGE is false
if: ${{ !env.DEPLOY_IMAGE }}
if: ${{ !env.DEPLOY_IMAGE == 'false' }}
run: |
echo "$DEPLOY_IMAGE"
Expand All @@ -76,7 +76,7 @@ jobs:
# id: docker_build
# uses: docker/build-push-action@v5
# with:
# push: ${{ env.DEPLOY_IMAGE }}
# push: ${{ env.DEPLOY_IMAGE == 'true' }}
# file: docker/Dockerfile
# platforms: linux/amd64,linux/arm64
# build-args: |
Expand Down

0 comments on commit ce0c33b

Please sign in to comment.