We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1a6cc4 commit c9e2428Copy full SHA for c9e2428
.github/workflows/build.yml
@@ -33,8 +33,8 @@ jobs:
33
34
- name: Push the image to the cache
35
# It's not possible to push packages from fork PRs.
36
- if: github.ref == 'refs/heads/main' || github.event.pull_request.head.repo.full_name
37
- == github.repository
+ if: (github.ref == 'refs/heads/main' || github.event.pull_request.head.repo.full_name
+ == github.repository) && github.actor != 'dependabot[bot]'
38
run: |-
39
docker tag pyaleph-node:${GITHUB_REF##*/} ghcr.io/$GITHUB_REPOSITORY/build-cache
40
docker push ghcr.io/$GITHUB_REPOSITORY/build-cache
0 commit comments