Forgot to update the flake.lock as well #26
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: Build static site | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| fetch-depth: 0 | |
| lfs: true | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v17 | |
| - name: Build site | |
| run: nix build | |
| - name: Archive pages | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: ./result |