Skip to content

fix release asset parsing for download page (#378) #22

fix release asset parsing for download page (#378)

fix release asset parsing for download page (#378) #22

Workflow file for this run

name: Deploy docs
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
paths:
- "website/**"
# 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 only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
with:
node-version-file: "./website/package.json"
cache: npm
cache-dependency-path: website/package-lock.json
- id: build-docs
name: build-docs
working-directory: ./website
run: |
make build
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./website/build"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4