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 589383c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/deploy-production.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Deploy Production

on:
workflow-dispatch:

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 589383c

Please sign in to comment.