This commit is contained in:
Christian Krakau-Louis
2025-02-11 23:11:33 +01:00
2 changed files with 19 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
name: Deploy to Production
on:
workflow_run:
workflows: ["Build and Push Docker Image"]
types:
- completed
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Call Deployment Webhook
run: |
curl -X POST https://docker2.kuechenserver.org/api/stacks/webhooks/960c7d8e-97ec-4175-a8dc-73f037b02349
+1 -1
View File
@@ -40,7 +40,7 @@ jobs:
uses: docker/build-push-action@v4
with:
# Specify target platforms
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
context: .
file: Dockerfile
push: true