Skip to content

Commit

Permalink
build: amplify production deploy trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
yanggak12 committed Mar 24, 2024
1 parent 6bdc0c6 commit 6d54525
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Deploy Production

on:
push:
branches: ['main']

jobs:
amplify-webhook:
runs-on: ubuntu-latest
env:
AMPLIFY_WEBHOOK_URL: ${{secrets.AMPLIFY_WEBHOOK_URL}}
steps:
- uses: actions/checkout@v2
- run: curl -X POST -d {} $AMPLIFY_WEBHOOK_URL -H "Content-Type:application/json"

0 comments on commit 6d54525

Please sign in to comment.