Merge pull request #11 from gierens/fix-typo-3 #112
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: Deploy to Cloudflare Pages | |
on: [push] | |
jobs: | |
deploy: | |
runs-on: ubuntu-24.04 | |
permissions: | |
contents: read | |
deployments: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Install dependencies | |
run: | | |
cargo install \ | |
[email protected] \ | |
[email protected] \ | |
[email protected] \ | |
[email protected] \ | |
[email protected] | |
- name: Build book | |
run: mdbook build | |
- name: Publish to Cloudflare Pages | |
uses: cloudflare/pages-action@1 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: 'writing-hypervisor-in-zig' | |
directory: 'book' | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
branch: master | |
wranglerVersion: '3' |