Pages #400
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: Pages | |
| on: | |
| push: | |
| branches: | |
| - main # default branch | |
| schedule: | |
| - cron: "0 10 * * *" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| # If your repository depends on submodule, please see: https://github.com/actions/checkout | |
| submodules: recursive | |
| # git-restore-mtime-bare uses the ref log to find the correct timestamp | |
| # for each file. This requires a full git history. The default value (1) | |
| # creates a shallow checkout. | |
| fetch-depth: 0 | |
| # Fix timestamps | |
| - name: restore timestamps | |
| uses: chetan/git-restore-mtime-action@v2 | |
| - name: Use Node.js 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| # Examples: 20, 18.19, >=16.20.2, lts/Iron, lts/Hydrogen, *, latest, current, node | |
| # Ref: https://github.com/actions/setup-node#supported-version-syntax | |
| node-version: "20" | |
| - name: Cache NPM dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: node_modules | |
| key: ${{ runner.OS }}-npm-cache | |
| restore-keys: | | |
| ${{ runner.OS }}-npm-cache | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: Build | |
| run: npm run build | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: ./public | |
| deploy: | |
| needs: build | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |