Skip to content

Update @types/node and typedoc-plugin-mdn-links versions #212

Update @types/node and typedoc-plugin-mdn-links versions

Update @types/node and typedoc-plugin-mdn-links versions #212

Workflow file for this run

name: publish docs
on:
push:
branches:
- 'main'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
permissions:
contents: read
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
restore:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: checkout "gh-pages" branch
uses: actions/[email protected]
with:
ref: gh-pages
- name: create empty index
run: |
if [ ! -f ".nojekyll" ]; then
echo "Prevent GitHub Pages from using Jekyll." > .nojekyll
fi
- name: upload current docs
uses: actions/[email protected]
with:
if-no-files-found: error
name: current_documentation
path: .
retention-days: 1
build:
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/[email protected]
- uses: actions/[email protected]
with:
cache: 'npm'
node-version: 20
- run: npm ci --no-fund --no-audit
- name: build documentation, with version
if: github.ref_type == 'tag'
run: npm run docs -- --includeVersion
- name: build documentation, without version
if: github.ref_type != 'tag'
run: npm run docs
- name: upload generated docs
uses: actions/[email protected]
with:
if-no-files-found: error
name: generated_documentation
path: docs
retention-days: 1
publish:
needs:
- build
- restore
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/[email protected]
- name: download current docs
uses: actions/[email protected]
with:
name: current_documentation
path: new_documentation
- name: download new docs
uses: actions/[email protected]
with:
name: generated_documentation
path: generated_documentation
- name: create version directory
if: github.ref_type == 'tag'
run: |
mkdir -p "new_documentation/${{ github.ref_name }}"
echo "<meta http-equiv=\"refresh\" content=\"0; url=${{ github.ref_name }}/\" />" > new_documentation/index.html
if [ ! -d "new_documentation/current" ]; then
mkdir -p "new_documentation/current"
fi
echo "<meta http-equiv=\"refresh\" content=\"0; url=../${{ github.ref_name }}/\" />" > new_documentation/current/index.html
rsync -ac --delete generated_documentation/ "new_documentation/${{ github.ref_name }}"
- name: create development directory
if: github.ref_type != 'tag'
run: |
if [ ! -d "new_documentation/development" ]; then
mkdir -p "new_documentation/development"
fi
if [ ! -f "new_documentation/index.html" ]; then
echo "<meta http-equiv=\"refresh\" content=\"0; url=development/\" />" > new_documentation/index.html
fi
rsync -ac --delete generated_documentation/ "new_documentation/development"
- name: publish to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
clean: true
folder: new_documentation