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.
2 parents 70c0785 + 7cc8aae commit 6951317Copy full SHA for 6951317
.github/workflows/docker.yml
@@ -20,6 +20,7 @@ jobs:
20
uses: docker/setup-buildx-action@v3
21
- name: Login to Docker Hub
22
uses: docker/login-action@v3
23
+ if: github.event_name == 'push'
24
with:
25
username: ${{ secrets.DOCKERHUB_USERNAME }}
26
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
@@ -28,5 +29,5 @@ jobs:
28
29
30
context: .
31
platforms: linux/amd64,linux/arm64
- push: true
32
- tags: sysprog21/chisel-bootcamp:latest
+ push: ${{ github.event_name == 'push' }}
33
+ tags: sysprog21/chisel-bootcamp:latest
0 commit comments