mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 06:19:22 -05:00
ci: add demo.yml
This commit is contained in:
parent
72d4bcfc00
commit
f8b4213ebd
2 changed files with 43 additions and 0 deletions
42
.github/workflows/demo.yml
vendored
Normal file
42
.github/workflows/demo.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
name: Deploy demo
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths: ["demo/**", "src/**", "Cargo.toml"]
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Setup Rust
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
target: wasm32-unknown-unknown
|
||||||
|
override: true
|
||||||
|
- name: Install Trunk
|
||||||
|
uses: jetli/trunk-action@v0.4.0
|
||||||
|
with:
|
||||||
|
version: "latest"
|
||||||
|
- name: Deploy GitHub Pages
|
||||||
|
run: |
|
||||||
|
cd demo
|
||||||
|
trunk build --release
|
||||||
|
git worktree add gh-pages
|
||||||
|
git config user.name "Deploy demo from CI"
|
||||||
|
git config user.email ""
|
||||||
|
cd gh-pages
|
||||||
|
# Delete the ref to avoid keeping history.
|
||||||
|
git update-ref -d refs/heads/gh-pages
|
||||||
|
rm -rf *
|
||||||
|
mv ../dist/* .
|
||||||
|
git add .
|
||||||
|
git commit -m "Deploy demo $GITHUB_SHA to gh-pages"
|
||||||
|
git push --force --set-upstream origin gh-pages
|
1
demo/gh-pages
Submodule
1
demo/gh-pages
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit faaa4dfa5547b4c3e117999f4ed4cf2332006f2b
|
Loading…
Add table
Reference in a new issue