Remove the refresh call for pkg_forc_node
(#198)
#457
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: publish-book | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v31 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
env: | |
NIX_FIRST_BUILD_UID: 400 | |
- name: build | |
run: nix develop --print-build-logs --no-update-lock-file .#book-dev --command mdbook build book | |
- name: deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./book/book | |
destination_dir: ./ | |
cname: nix.fuel.network |