We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d8a625 commit 3747827Copy full SHA for 3747827
.github/workflows/docker-build.yml
@@ -41,7 +41,7 @@ jobs:
41
registry: ghcr.io
42
username: ${{ github.actor }}
43
password: ${{ secrets.GITHUB_TOKEN }}
44
-
+
45
- name: Log in to Docker Hub
46
uses: docker/login-action@v3
47
with:
@@ -72,3 +72,9 @@ jobs:
72
labels: ${{ steps.meta.outputs.labels }}
73
cache-from: type=gha
74
cache-to: type=gha,mode=max
75
76
+ - name: Ping Watchtower
77
+ if: secrets.WATCHTOWER_HTTP_API_URL && secrets.WATCHTOWER_HTTP_API_TOKEN
78
+ run: |
79
+ curl --fail -X POST ${{ secrets.WATCHTOWER_HTTP_API_URL }} \
80
+ -H "Authorization: Bearer ${{ secrets.WATCHTOWER_HTTP_API_TOKEN }}"
0 commit comments