Skip to content

Commit 15424b5

Browse files
committed
Rough push
1 parent 73e65fc commit 15424b5

File tree

4 files changed

+10144
-5731
lines changed

4 files changed

+10144
-5731
lines changed

.github/workflows/nextjs.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,28 @@ jobs:
3131
steps:
3232
- name: Checkout
3333
uses: actions/checkout@v4
34-
- name: Setup Node
34+
- name: Update Submodules
35+
run: git submodule update --init --recursive --remote
36+
- name: Install pnpm
37+
uses: pnpm/action-setup@v4
38+
with:
39+
version: 10
40+
- name: Use Node.js
3541
uses: actions/setup-node@v4
3642
with:
3743
node-version: "22"
38-
cache: 'pnpm'
39-
- name: Setup pnpm
40-
uses: pnpm/action-setup@v4
44+
cache: "pnpm"
4145
- name: Install dependencies
42-
working-directory: ./website
4346
run: pnpm install
4447
- name: Build with Next.js
45-
working-directory: ./website
4648
run: |
4749
pnpm run build
50+
find ./out | sed -e "s/[^-][^\/]*\// |/g" -e "s/|\([^ ]\)/|-\1/"
51+
printenv
4852
- name: Upload artifact
4953
uses: actions/upload-pages-artifact@v3
5054
with:
51-
path: ./website/out
55+
path: ./out
5256

5357
# Deployment job
5458
deploy:

0 commit comments

Comments
 (0)