Skip to content

Merge pull request #45 from ChainSafe/willem/zip321-parsing #45

Merge pull request #45 from ChainSafe/willem/zip321-parsing

Merge pull request #45 from ChainSafe/willem/zip321-parsing #45

Workflow file for this run

name: Deploy Docs
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 the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Just
uses: extractions/setup-just@v2
- name: install wasm-pack
uses: jetli/[email protected]
with:
version: latest
- name: build pkg
run: just build
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
cache-dependency-path: './docs/package-lock.json'
- name: Install dependencies
working-directory: ./docs
run: npm install --frozen-lockfile --non-interactive
- name: Build
working-directory: ./docs
run: npm run build
# 👆 Build steps
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# 👇 Specify build output path
path: ./docs/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2