Add batch Subject-ID minting and client-supplied create IDs (#1101) #92
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: Deploy docs to website | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - 'docs/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| trigger-website-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Cloudflare Pages build | |
| run: curl -fsS -X POST "$DEPLOY_HOOK" | |
| env: | |
| DEPLOY_HOOK: ${{ secrets.CLOUDFLARE_PAGES_DEPLOY_HOOK }} |