Merge pull request #45 from ChainSafe/willem/zip321-parsing #45
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 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 |