8.8.5 — Temporary Reservoir #75
Workflow file for this run
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 | |
| on: | |
| workflow_dispatch: | |
| release: | |
| types: [created] | |
| concurrency: | |
| group: 'pages' | |
| cancel-in-progress: false | |
| permissions: {} | |
| env: | |
| npm_config_audit: false | |
| npm_config_fund: false | |
| npm_config_save: false | |
| npm_config_package_lock: false | |
| jobs: | |
| deploy: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| ref: main | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Install deps | |
| run: npm ci | |
| - name: Add additional deps | |
| run: npm i @rollup/[email protected] | |
| - name: Build docs | |
| run: npm run docs:build | |
| - name: Upload artifact | |
| uses: actions/[email protected] | |
| with: | |
| path: 'docs/build' | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |