Skip to content

Commit

Permalink
Fix push image condition
Browse files Browse the repository at this point in the history
  • Loading branch information
EngHabu authored Feb 23, 2021
1 parent d969650 commit d3ec2c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
build_extra_args: "--target=default --compress=true"
context: ./
dockerfile: docker/sandbox/Dockerfile
push_image_and_stages: ${{ github.event.name == 'release' }}
push_image_and_stages: ${{ github.event_name == 'release' }}
push-sandbox-dind-image:
name: Push sandbox DinD image to GHCR
runs-on: ubuntu-latest
Expand All @@ -44,4 +44,4 @@ jobs:
build_extra_args: "--target=dind --compress=true"
context: ./
dockerfile: docker/sandbox/Dockerfile
push_image_and_stages: ${{ github.event.name == 'release' }}
push_image_and_stages: ${{ github.event_name == 'release' }}

0 comments on commit d3ec2c2

Please sign in to comment.