Skip to content

chore(deps): bump @docusaurus/types from 3.6.3 to 3.7.0 #18

chore(deps): bump @docusaurus/types from 3.6.3 to 3.7.0

chore(deps): bump @docusaurus/types from 3.6.3 to 3.7.0 #18

Workflow file for this run

name: Deploy to GitHub Pages
on:
pull_request:
branches:
- main
- develop
push:
branches:
- main
- develop
jobs:
test-deploy:
if: github.event_name != 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test building the website
run: yarn build
deploy:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
cache: yarn
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.DEPLOY_GITHUB_PAGES }}
- name: Deploy to GitHub Pages
env:
USE_SSH: true
GIT_USER: git
run: |
git config --global user.email "[email protected]"
git config --global user.name "gh-actions"
yarn install --frozen-lockfile
yarn deploy