Skip to content

ci: 👷 off ssh

ci: 👷 off ssh #11

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
workflow_dispatch: {}
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
env:
GIT_USER: github-actions[bot]
GIT_PASS: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- name: SETUP_NODE_${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: BEFORE_SCRIPT
run: |
# Configure git identity globally so commits in temp gh-pages clone succeed
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: INSTALL_PACKAGES
run: pnpm install --frozen-lockfile
- name: DEPLOY
run: pnpm --filter "@gracefullight/docusaurus-plugin-docs" run deploy