Skip to content

Commit b4ed295

Browse files
Static export: do not export admin
- Changed Node.js version from 20 to 22 in the build workflow. - Added a step to remove the admin folder from static export before building.
1 parent eb38056 commit b4ed295

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ jobs:
1515
- name: Node Setup
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: '20'
18+
node-version: '22'
1919

2020
- name: Install dependencies
2121
run: npm install
2222

23+
- name: Remove admin folder from static export
24+
run: rm -rf ./src/app/admin
25+
2326
- name: Build and Static HTML Export
2427
run: npm run build
2528
env:

0 commit comments

Comments
 (0)