This repository was archived by the owner on May 15, 2026. It is now read-only.
fix: Change MacBookPro16,3 to 16,2 for Tahoe compatibility #272
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 to GitHub Pages | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout your repository using git | |
| uses: actions/checkout@v4.2.2 | |
| - name: Install, build, and upload your site output | |
| uses: withastro/action@v4.0.0 | |
| with: | |
| node-version: 24.5.0 | |
| package-manager: pnpm@latest | |
| deploy: | |
| needs: build | |
| runs-on: macos-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4.0.5 |