Skip to content

Station Ecosystem Proposal #514

Station Ecosystem Proposal

Station Ecosystem Proposal #514

Workflow file for this run

name: Test mdBook Build & Upload Artifact
on:
# Run on only PR, no gh pages stuff
pull_request:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
rustup update
- name: Install mdbook & plugins
uses: taiki-e/[email protected]
with:
tool: [email protected],[email protected],[email protected],[email protected],[email protected],[email protected]
- name: Build with mdBook
run: mdbook build
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: Built Site
path: ./book/html
retention-days: 3