Skip to content

Commit fe738f3

Browse files
authored
Merge pull request #16 from UWB-ACM/uellenberg/deploy-webhook
Setup automatic deployments
2 parents 91ca16b + df91292 commit fe738f3

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Trigger Deploy
13+
env:
14+
DEPLOY_WEBHOOK: ${{ secrets.DEPLOY_WEBHOOK }}
15+
run: curl -X POST "$DEPLOY_WEBHOOK"

0 commit comments

Comments
 (0)