Skip to content

Draw ownership of neighboring wasteland provinces #12

Draw ownership of neighboring wasteland provinces

Draw ownership of neighboring wasteland provinces #12

Workflow file for this run

name: Deploy Github Pages
permissions:
id-token: write
pages: write
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup rust
run: |
rustup update
rustup default
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Build WASM
run: wasm-pack build --target web --release
- name: Creating artifact
run: tar -cvf artifact.tar pkg/ resources/ index.html main.css
- uses: actions/upload-artifact@v4
with:
name: "github-pages"
path: "artifact.tar"
retention-days: 1
if-no-files-found: error
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4