Skip to content

Generate documentation for ungms-sync by @devSparkle #11

Generate documentation for ungms-sync by @devSparkle

Generate documentation for ungms-sync by @devSparkle #11

Workflow file for this run

name: Generate Documentation
run-name: Generate documentation for ${{ github.ref_name }} by @${{ github.actor }}
on:
push:
workflow_dispatch:
release:
types: [created]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# Build steps
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "npm"
cache-dependency-path: "**/.github/workflows/*.yml"
- name: Build
run: npx moonwave build
# Upload steps
- name: Upload artifact
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v3
with:
name: documentation
path: build
retention-days: 5
publish:
if: github.event_name == 'release' || github.event_name == 'workflow_dispatch'
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: documentation
path: build
# Upload steps
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1