Release to Github Pages #24
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: Release to Github Pages | |
on: | |
workflow_run: | |
workflows: [ "CI" ] | |
branches: [ main ] | |
types: | |
- completed | |
workflow_dispatch: | |
permissions: | |
contents: write # for committing to gh-pages branch. | |
pages: write | |
id-token: write | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
gihub-pages-deploy: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
timeout-minutes: 10 | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install stable Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Add WASM target | |
run: rustup target add wasm32-unknown-unknown | |
- uses: cargo-bins/cargo-binstall@main | |
- name: Download and install Trunk binary | |
run: cargo binstall --no-confirm trunk | |
- name: Build release with Trunk | |
run: trunk build --release | |
# Deploy with Github Static Pages | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
with: | |
enablement: true | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
# Upload dist dir | |
path: './crates/web-ui/dist' | |
- name: Deploy to GitHub Pages 🚀 | |
id: deployment | |
uses: actions/deploy-pages@v3 |