Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 0 additions & 79 deletions .github/workflows/deploy.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '24'
cache: 'npm'

- run: npm ci
Expand Down
21 changes: 17 additions & 4 deletions .github/workflows/sync_class_ref.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Sync Class Reference

on:
repository_dispatch:
types: [sync_class_ref]
workflow_dispatch:
# Scheduled updates only run on the default/master branch.
# Other branches need to be run manually (usually after a new release for that branch).
Expand All @@ -28,7 +26,7 @@ jobs:
permissions:
contents: write
pull-requests: write

steps:
- name: Checkout the documentation repository
uses: actions/checkout@v4
Expand All @@ -53,7 +51,22 @@ jobs:

- name: Remove old documentation
run: |
rm ${{ github.workspace }}/docs/Classes/class_*.md
excluded_files=(
"index.md"
)

shopt -s nullglob

for file in "${{ github.workspace }}/docs/Classes"/*.md; do
filename="$(basename "$file")"

if printf '%s\n' "${excluded_files[@]}" | grep -Fxq "$filename"; then
echo "Keeping excluded file: $filename"
continue
fi

rm "$file"
done

- name: Build new documentation
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea/
.junie/
yarn.lock
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:24-alpine

WORKDIR /app

Expand Down
Loading