Merge pull request #122 from arobert93/patch-1 #150
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
target: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v1 | |
# TOOD: enable cache once stable CLI is working | |
# - uses: actions-rs/[email protected] | |
# with: | |
# crate: dioxus-cli | |
# version: latest | |
# use-tool-cache: true | |
- name: Install CLI | |
run: cargo install dioxus-cli --locked | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: dx build --release --features web && cargo run --release --features prebuild && cp docs/index.html docs/404.html | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: docs # The folder the action should deploy. | |
target-folder: . | |
clean: false # don't scrub docs |