Skip to content

maker-appimage: IconSet support implementation. #90

maker-appimage: IconSet support implementation.

maker-appimage: IconSet support implementation. #90

Workflow file for this run

# Simple workflow for deploying TypeDoc to GitHub Pages
name: Deploy TypeDoc to Pages
on:
push:
branches: ["master"]
# Sets permissions of the GITHUB_TOKEN to allow deployment to Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
name: Build documentation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Generate documentation
run: npm run docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/typedoc'
deploy:
name: Deploy documentation
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4