Skip to content

fix: upgrade GitHub Actions to Node.js 24 compatible versions #234

fix: upgrade GitHub Actions to Node.js 24 compatible versions

fix: upgrade GitHub Actions to Node.js 24 compatible versions #234

Workflow file for this run

name: Docs Preview
on:
pull_request:
types: [opened, synchronize, reopened, closed]
paths:
- 'docs/**'
- '.github/workflows/docs-preview.yml'
permissions:
contents: write
pull-requests: write
jobs:
preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
- name: Get pnpm version from Volta config
id: pnpm-version
run: echo "version=$(jq -r '.volta.pnpm' package.json)" >> $GITHUB_OUTPUT
- uses: pnpm/action-setup@v4
with:
version: ${{ steps.pnpm-version.outputs.version }}
- name: Build Docs for Preview
working-directory: docs
env:
# Override base path for PR preview
DOCS_BASE_PATH: /pr-preview/pr-${{ github.event.pull_request.number }}
run: |
pnpm install --frozen-lockfile
pnpm build
- name: Ensure .nojekyll at gh-pages root
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
# Try to fetch the gh-pages branch
if git fetch origin gh-pages:gh-pages 2>/dev/null; then
# Branch exists remotely, check if .nojekyll is present
if git show gh-pages:.nojekyll &>/dev/null; then
echo ".nojekyll already exists at gh-pages root"
else
echo "Adding .nojekyll to existing gh-pages branch"
git checkout gh-pages
touch .nojekyll
git add .nojekyll
git commit -m "Add .nojekyll to disable Jekyll processing"
git push origin gh-pages
git checkout -
fi
else
# Branch doesn't exist, create it as an orphan branch
echo "Creating gh-pages branch with .nojekyll"
git checkout --orphan gh-pages
git rm -rf .
touch .nojekyll
git add .nojekyll
git commit -m "Initialize gh-pages with .nojekyll"
git push origin gh-pages
git checkout -
fi
- name: Deploy Preview
uses: rossjrw/pr-preview-action@v1
with:
source-dir: docs/dist/
preview-branch: gh-pages
umbrella-dir: pr-preview
pages-base-url: craft.sentry.dev
action: auto