Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
christianlouis committed Feb 11, 2025
2 parents c36916d + a5c4ad2 commit 0ebdd47
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0ebdd47

Please sign in to comment.