Bump cachix/cachix-action from 12 to 15 #128
This file contains 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: "CI" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
nix-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: nixbuild/nix-quick-install-action@v22 | |
with: | |
nix_conf: | | |
experimental-features = nix-command flakes | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: gtrunsec | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Run Flake Show | |
run: nix -Lv flake show | |
- name: Build Doc | |
run: nix develop .#doc --show-trace --command -- mkdoc | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: ./docs/publish/public |