prefetch #226
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: Build and Deploy Site | |
| permissions: | |
| contents: write | |
| pages: write | |
| id-token: write | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| - name: Install dependencies | |
| uses: bahmutov/npm-install@v1 | |
| - name: Install Zora | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: [email protected] | |
| - name: Install Stork | |
| uses: baptiste0928/[email protected] | |
| with: | |
| crate: stork-search | |
| version: "1.6.0" | |
| - name: Build project | |
| run: npm run build | |
| - name: Build index | |
| run: npm run build:index | |
| - name: Deploy project | |
| uses: JamesIves/[email protected] | |
| with: | |
| folder: ./public | |
| clean-exclude: pr-preview/ | |
| force: false |