Remove Jekyll and add 404 fallback in workflow (#2) #17
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: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
target: wasm32-unknown-unknown | |
- uses: cargo-bins/cargo-binstall@main | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install CLI | |
run: cargo binstall --no-confirm dioxus-cli --locked --force | |
- name: Build | |
run: dx build --release | |
- name: Add .nojekyll and fallback 404 | |
run: | | |
touch dist/.nojekyll | |
cp dist/index.html dist/404.html | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: dist | |
target-folder: . |