fix uri typo #402
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: GitHub Pages | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-24.04 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # speeds up pnpm install, theoretically | |
| - name: Cache Dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.local/share/pnpm/store | |
| key: pnpm7-${{ hashFiles('pnpm-lock.yaml') }} | |
| restore-keys: | | |
| pnpm7-${{ hashFiles('pnpm-lock.yaml') }} | |
| pnpm7- | |
| - name: Setup PNPM | |
| id: pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.1.0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run Eleventy | |
| run: pnpm build | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DEBUG: Eleventy:Benchmark | |
| - name: Upload Built Site | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: public/ | |
| retention-days: 90 | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |