chore(deps): Dioxus 0.6.0 #7
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: GitHub Pages | |
env: | |
CARGO_TERM_COLOR: always | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
# For the push to `gh-pages` branch. | |
contents: write | |
pages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
- name: Setup cargo-binstall | |
uses: cargo-bins/[email protected] | |
- name: Install Dioxus | |
run: cargo binstall dioxus-cli@"$DIOXUS_VERSION" --force --no-confirm | |
- name: Build app | |
run: dx build --release | |
- name: Deploy Project 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: dist |