Skip to content

Commit

Permalink
Merge e3e4aea into 1e7a0cd
Browse files Browse the repository at this point in the history
  • Loading branch information
fb55 committed Aug 25, 2022
2 parents 1e7a0cd + e3e4aea commit 3f300e6
Showing 1 changed file with 46 additions and 13 deletions.
59 changes: 46 additions & 13 deletions .github/workflows/site.yml
@@ -1,29 +1,62 @@
name: Deploy to GitHub Pages
name: Deploy TypeDoc docs to GitHub Pages

# Based on https://raw.githubusercontent.com/actions/starter-workflows

on:
# Runs on pushes targeting the default branch
push:
branches:
- main
branches: [$default-branch]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

env:
FORCE_COLOR: 2
NODE: 16

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true

jobs:
deploy:
name: Deploy to GitHub Pages
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.4.1
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3.4.1
with:
node-version: '${{ env.NODE }}'
cache: 'npm'
- run: npm ci
- name: Setup Pages
id: pages
uses: actions/configure-pages@v1
- name: Install dependencies
run: npm ci
- name: Build docs
run: npm run build:docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs
cname: cheerio.js.org
path: ./docs

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit 3f300e6

Please sign in to comment.