Skip to content

ci: add website workflow permissions (#7) #19

ci: add website workflow permissions (#7)

ci: add website workflow permissions (#7) #19

Workflow file for this run

name: Website
on:
pull_request: {}
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
website-build:
name: Build Website
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy, rustfmt
target: wasm32-unknown-unknown
- name: Install Cargo Binary Install
uses: cargo-bins/cargo-binstall@main
- name: Install Trunk
run: cargo binstall --force -y trunk
- name: Install Node.js dependencies
run: npm install
- name: Build Website
run: trunk build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: website
path: dist
retention-days: 1
if-no-files-found: error
deploy:
name: Deploy
needs: website-build
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4