Skip to content

Bump braces from 3.0.2 to 3.0.3 in /ts in the npm_and_yarn group #16

Bump braces from 3.0.2 to 3.0.3 in /ts in the npm_and_yarn group

Bump braces from 3.0.2 to 3.0.3 in /ts in the npm_and_yarn group #16

#
# Builds the docs and deploys to GitHub pages
#
# https://github.com/actions/setup-node
# Using https://github.com/marketplace/actions/deploy-to-github-pages
name: Deploy to Github pages
on:
push:
branches:
- main
jobs:
deploy_pages:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 16
cache: pnpm
cache-dependency-path: ts/pnpm-lock.yaml
- run: pnpm install --frozen-lockfile
working-directory: ./ts
- run: pnpm build:docs
working-directory: ./ts
- run: touch docs/.nojekyll
working-directory: ./ts
- uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: ts/docs # The folder the action should deploy.