work on replay for mobile #10
This file contains hidden or 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 Wesley Arcade Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| trigger-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger WesleyArcadeSite deployment | |
| run: | | |
| curl -X POST \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| -H "Authorization: token ${{ secrets.DEPLOY_TOKEN }}" \ | |
| https://api.github.com/repos/TomWesley/WesleyArcadeSite/dispatches \ | |
| -d '{"event_type":"deploy"}' |