We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cd789d commit 471a9abCopy full SHA for 471a9ab
1 file changed
.github/workflows/publish-docker.yaml
@@ -57,5 +57,12 @@ jobs:
57
subject-digest: ${{ steps.push.outputs.digest }}
58
push-to-registry: true
59
60
- - name: Notify Web Server (to pull latest image)
61
- run: 'curl -H "Authorization: Bearer ${{secrets.WATCHTOWER_HTTP_API_SECRET}}" http://ograf-devtool.superfly.tv:8088/v1/update'
+ - name: Update deployment (pull latest image)
+ uses: appleboy/ssh-action@v1
62
+ with:
63
+ host: ${{ secrets.HOST }}
64
+ username: ${{ secrets.SSH_USERNAME }}
65
+ password: ${{ secrets.SSH_PASSWORD }}
66
+ port: ${{ secrets.SSH_PORT }}
67
+ script: |
68
+ docker compose up -d
0 commit comments