fix: fallible systems using extra arguments #221
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 | |
on: | |
push: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
asteroids: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: wasm32-unknown-unknown | |
- run: cargo build --release --package asteroids --target wasm32-unknown-unknown --manifest-path=asteroids/Cargo.toml | |
- run: mv ./target/wasm32-unknown-unknown/release/asteroids.wasm ./asteroids/public | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: asteroids | |
path: asteroids/public | |
guide: | |
runs-on: ubuntu-20.04 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup mdBook | |
uses: peaceiris/actions-mdbook@v1 | |
with: | |
mdbook-version: "latest" | |
- run: mdbook build guide | |
- name: Upload Artefact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: guide | |
path: guide/book | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [asteroids, guide] | |
if: github.event_name == 'push' && ${{ github.ref == 'refs/heads/main' }} | |
steps: | |
- name: Download guide | |
uses: actions/download-artifact@v4 | |
with: | |
name: guide | |
path: dist/guide | |
- name: Download asteroids | |
uses: actions/download-artifact@v4 | |
with: | |
name: asteroids | |
path: dist/asteroids | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist |