Skip to content

GitHub Pages

GitHub Pages #8

Workflow file for this run

name: GitHub Pages
on: workflow_dispatch
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install
run: npm install
working-directory: ./website
- name: Build
run: npm run build
working-directory: ./website
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/dist
cname: common-changelog.org