Skip to content

Commit 8ae42af

Browse files
committed
chore: auto deploy workflow
1 parent cd11082 commit 8ae42af

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/cd.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
docker-push:
3232
name: Docker Push
33-
runs-on: ubuntu-latest
33+
runs-on: ubuntu-20.04
3434
steps:
3535
- uses: actions/checkout@v3
3636
- name: Set up QEMU
@@ -57,3 +57,10 @@ jobs:
5757
platforms: linux/amd64,linux/arm64
5858
tags: ${{ steps.meta.outputs.tags }}
5959
labels: ${{ steps.meta.outputs.labels }}
60+
61+
deploy:
62+
name: Deploy
63+
runs-on: ubuntu-20.04
64+
steps:
65+
- name: Trigger deployment
66+
run: curl ${{ secrets.DEPLOYMENT_URL }} -X POST -H "Authorization: ${{ secrets.DEPLOYMENT_SECRET }}"

0 commit comments

Comments
 (0)