Skip to content

Release 1.0.2.1 (#11) #7

Release 1.0.2.1 (#11)

Release 1.0.2.1 (#11) #7

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: github-pages
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches:
- 'master'
paths:
- 'src/docs/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
deploy:
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Update npm
run: npm update
- name: Build and release
run: npm run github-pages
- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
# upload entire directory
path: './src/docs/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2