Skip to content

fix(workflows): add curl and unzip to build dependencies in alpine np… #3

fix(workflows): add curl and unzip to build dependencies in alpine np…

fix(workflows): add curl and unzip to build dependencies in alpine np… #3

Workflow file for this run

name: Deploy Site
on:
workflow_dispatch: {}
push:
branches:
- main
paths:
- "site/**"
- ".github/**"
- "VERSION"
- "reference.yaml"
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
cache: npm
cache-dependency-path: site/package-lock.json
- run: npm ci
working-directory: site/
- run: make site-build
- uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
- uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
with:
path: site/.vitepress/dist
- id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5