Skip to content

Bump nixbuild/nix-quick-install-action from 26 to 28 #60

Bump nixbuild/nix-quick-install-action from 26 to 28

Bump nixbuild/nix-quick-install-action from 26 to 28 #60

Workflow file for this run

name: "Build and Deploy"
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- uses: nixbuild/nix-quick-install-action@v28
- uses: cachix/cachix-action@v14
with:
name: sumnerevans
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: Cache nix shell environment
run: nix develop --command bash -c "echo nix-shell environment is cached"
- name: make
run: nix develop --command bash -c "make"
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: public
deploy:
# Add a dependency to the build job
needs: build
if: github.ref == 'refs/heads/master'
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4