-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 887 Bytes
/
pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 history/ output.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