Merge pull request #692 from artizen-fund/fixJWT #246
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger CI | |
on: | |
push: | |
branches-ignore: | |
- 'main' | |
- 'staging' | |
jobs: | |
triggerCI: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Preview deploy via repository dispatch | |
if: ${{ github.ref_name != 'main' }} | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{ secrets.GH_FRONTEND_CI_REPO_PAT }} | |
repository: artizen-fund/artizen-frontend-ci | |
event-type: preview | |
client-payload: '{"env": "preview", "ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "branchname": "${{ github.ref_name }}", "dry_run":false}' | |
- name: Production deploy via repository dispatch | |
if: ${{ github.ref_name == 'main' }} | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{ secrets.GH_FRONTEND_CI_REPO_PAT }} | |
repository: artizen-fund/artizen-frontend-ci | |
event-type: production | |
client-payload: '{"env": "production", "ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "branchname": "${{ github.ref_name }}", "dry_run":false}' |