chore: migrate all programs from v1 to v2 state trees (#24) #9
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 Docs Sync | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| trigger-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger docs repo sync | |
| run: | | |
| curl -X POST \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| -H "Authorization: token ${{ secrets.docs_sync }}" \ | |
| https://api.github.com/repos/Lightprotocol/docs/dispatches \ | |
| -d '{"event_type":"sync-examples"}' |