Skip to content

Deploy NAND

Deploy NAND #26

Workflow file for this run

name: Deploy NAND
on:
# Runs on pushes targeting the default branch
push:
branches: ['gh-pages']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets the GITHUB_TOKEN permissions 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
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src
steps:
- name: Initialize repository
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: 'src/package-lock.json'
- name: Set up Rust
uses: actions/cache@v2
with:
path: ~/.cargo
key: ${{ runner.os }}-rust-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-rust-
- name: Install dependencies
run: |
npm install
cargo install wasm-pack
- name: Build NAND
run: |
npm run rwbuild
npm run build
- name: Setup pages
uses: actions/configure-pages@v3
- name: Upload dist
uses: actions/upload-pages-artifact@v1
with:
path: './src/dist' # Upload dist repository from the src directory
- name: Deploy to pages
id: deployment
uses: actions/deploy-pages@v1