Skip to content

Deploy compiled book to GH Pages #8

Deploy compiled book to GH Pages

Deploy compiled book to GH Pages #8

Workflow file for this run

name: "Rust Book ITA Build and Deploy"
on:
pull_request:
push:
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout Git repo
uses: actions/checkout@v4
- name: Setup Nix
uses: nixbuild/nix-quick-install-action@v26
- name: Restore and cache Nix store
uses: nix-community/cache-nix-action@v5
with:
primary-key: cache-${{ matrix.os }}-${{ hashFiles('**/*.nix') }}-${{ hashFiles('**/*.lock', '**/Cargo.toml') }}
restore-prefixes-first-match: |
cache-${{ matrix.os }}-${{ hashFiles('**/*.nix') }}
cache-${{ matrix.os }}
- name: Build the Book
run: nix build
- name: Get the Book Artifacts
run: mkdir -p rust_book_ita && cp -r result/* rust_book_ita/
- name: Upload the Book Artifacts
uses: actions/upload-artifact@v4
with:
name: rust_book_ita
path: rust_book_ita/
retention-days: 30
- name: Upload the Book for GH Pages
uses: actions/upload-pages-artifact@v3
with:
path: rust_book_ita/
Deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy Book to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4