We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f15e32 commit 5ab2189Copy full SHA for 5ab2189
.github/workflows/prod_container_img.yml
@@ -78,3 +78,15 @@ jobs:
78
echo VERSION=$VERSION
79
podman tag $IMAGE_NAME $IMAGE_ID:$VERSION
80
podman push $IMAGE_ID:$VERSION
81
+
82
+ trigger-redeploy:
83
+ name: Trigger Redeploy
84
+ runs-on: ubuntu-24.04
85
+ needs: [build]
86
+ steps:
87
+ - name: Trigger
88
+ run: |
89
+ curl -X POST \
90
+ -H "Content-Type: application/json" \
91
+ -H "Authorization: Bearer ${{ secrets.DIGITALOCEAN_TOKEN }}" \
92
+ "https://api.digitalocean.com/v2/apps/${{ secrets.DIGITALOCEAN_APP_ID }}/deployments"
0 commit comments