feat: major refactor with rust-lang #126
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: Deploy static site to Pages | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: ["main"] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
env: | |
BUILD_PATH: "." # default value when not using subfolders | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ env.BUILD_PATH }} | |
steps: | |
# Checkout repository | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Setup Node | |
- name: Setup Node 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
# Populate HTML template with JSON | |
- name: Generate static content | |
run: cargo run | |
# Build frontend | |
- name: Build frontend | |
run: | | |
corepack enable | |
corepack prepare pnpm@latest --activate | |
pnpm install | |
pnpm build | |
# Setup Pages | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
# Upload static page | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ${{ env.BUILD_PATH }}/build | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
needs: build | |
runs-on: ubuntu-latest | |
name: Deploy | |
steps: | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 |