Merge pull request #59 from jito-foundation/ab/update-steward-docs-2 #39
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: Redeploy Vercel | |
| on: | |
| push: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Trigger Vercel Deployment | |
| run: | | |
| curl -X POST "${{ secrets.VERCEL_DEPLOY_HOOK_URL }}" | |
| - name: Wait for deployment | |
| run: sleep 30 | |
| - name: Deployment Status | |
| run: echo "Vercel deployment has been triggered. Check your Vercel dashboard for deployment status." |