Skip to content

Use a name tracking context type for prints #26

Use a name tracking context type for prints

Use a name tracking context type for prints #26

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: 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
defaults:
run:
working-directory: takoweb
jobs:
deploy:
name: deploy takoweb
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
/home/runner/.cargo/
target
key: ${{ runner.os }}-takoweb-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-takoweb-cargo-${{ hashFiles('**/Cargo.lock') }}
${{ runner.os }}-takoweb-cargo-
${{ runner.os }}-
- name: install wasm toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
override: true
profile: minimal
- name: Install wasm bindgen cli
run: cargo install --locked wasm-bindgen-cli
- name: Install trunk
uses: jetli/[email protected]
with:
version: 'latest'
- name: Build web
run: trunk build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: 'takoweb/dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1