Skip to content

Commit

Permalink
ci: #227 add Deployment trigger for new releases
Browse files Browse the repository at this point in the history
  • Loading branch information
m-triassi committed Jan 22, 2022
1 parent b728085 commit 2f20e85
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Deploy Production

on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Trigger Deploy Url
run: curl ${{ secrets.DEPLOY_TRIGGER }}

0 comments on commit 2f20e85

Please sign in to comment.