Add portfolio detail page template matching blog style #12
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
| # Workflow to build Nix package and push it to the Cachix binary cache | |
| name: 🛫 Build and push to Cachix | |
| on: | |
| # Runs on pushes targeting the default branch | |
| push: | |
| branches: ["main"] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v31 | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: qgiswebsite | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - name: Run flake checks | |
| run: nix flake check | |
| - name: Build with Nix | |
| run: nix build .#website |