undead404 deploys π #1
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 | |
run-name: ${{ github.actor }} deploys π | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rust-build/[email protected] | |
- run: cargo install mdbook --vers 0.4.12 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- run: "go get ..." | |
- run: make content | |
- run: make original-content | |
- run: make interactive-examples | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
- run: cd interactive-examples && yarn install | |
- run: cd interactive-examples && yarn build | |
- run: make book/uk | |
- run: make book |