Skip to content

Commit

Permalink
fix: bad watchtower url
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kopeček committed Jan 22, 2024
1 parent 742c103 commit e81a56e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
steps:
- name: Call Watchtower to Update Docker Image
run: |
curl -X POST "$WATCHTOWER_URL" \
curl -X POST "${{ env.WATCHTOWER_URL }}" \
-H "Authorization: Bearer ${{ secrets.WATCHTOWER_TOKEN }}" \
-H "Content-Type: application/json"
env:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ jobs:
steps:
- name: Call Watchtower to Update Docker Image
run: |
curl -X POST "$WATCHTOWER_URL" \
curl -X POST "${{ env.WATCHTOWER_URL }}" \
-H "Authorization: Bearer ${{ secrets.WATCHTOWER_TOKEN }}" \
-H "Content-Type: application/json"
env:
WATCHTOWER_URL: ${{ secrets.WATCHTOWER_URL }}

0 comments on commit e81a56e

Please sign in to comment.