Skip to content

fix: upgrade @docusaurus/preset-classic from 2.4.1 to 2.4.3 (#3) #12

fix: upgrade @docusaurus/preset-classic from 2.4.1 to 2.4.3 (#3)

fix: upgrade @docusaurus/preset-classic from 2.4.1 to 2.4.3 (#3) #12

Workflow file for this run

name: Deploy
on:
workflow_dispatch:
push:
branches: [main]
paths-ignore:
[
'.*ignore',
'README.md',
'.prettier*',
'.github/workflows/static-analysis.yml',
'tsconfig.json',
]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 19
- uses: pnpm/[email protected]
name: Install pnpm
id: pnpm-install
with:
version: 8.6.2
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-
- name: Install - Build
run: pnpm i && pnpm build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: deploy # can't use default gh-pages for org gh pages
publish_dir: ./build
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
# The GH actions bot is used by default if you didn't specify the two fields.
# You can swap them out with your own user credentials.
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com