Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnachun committed Sep 18, 2023
1 parent ea6b27d commit 85eecd4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/container_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ jobs:

push_docker_containers:
needs: setup
if: needs.setup.outputs.any_changed == true
if: github.event.pull_request.merged == true
if: needs.setup.outputs.any_changed == true && github.event.pull_request.merged == true
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -90,8 +89,7 @@ jobs:
push_apptainer_containers:
needs: setup
if: needs.setup.outputs.any_changed == true
if: github.event.pull_request.merged == true
if: needs.setup.outputs.any_changed == true && github.event.pull_request.merged == true
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down

0 comments on commit 85eecd4

Please sign in to comment.