Skip to content

Commit

Permalink
Fix the other instance of "Push to GHCR"
Browse files Browse the repository at this point in the history
  • Loading branch information
cgcgcg committed Mar 25, 2024
1 parent f5e3af8 commit cbe9456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
PYNUCLEUS_BUILD_PARALLELISM=4
- name: Push To GHCR
if: github.event_name == 'pull_request'
if: (github.event_name == 'pull_request') && (github.actor != 'dependabot[bot]')
uses: redhat-actions/push-to-registry@v2
id: push-pr
with:
Expand All @@ -78,7 +78,7 @@ jobs:
${{ steps.build_image.outputs.image }}:${{ env.TEST_IMAGE_TAG }}
- name: Push To GHCR
if: (github.event_name == 'push') && (github.actor != 'dependabot[bot]')
if: github.event_name == 'push'
uses: redhat-actions/push-to-registry@v2
id: push
with:
Expand Down

0 comments on commit cbe9456

Please sign in to comment.