Skip to content

Commit d19291b

Browse files
committed
fix(ci): create 2025 distdir
1 parent b5738ea commit d19291b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
pnpm build
3232
- name: copy 2025 to _site
3333
shell: bash
34-
run: cp -r ./2025/dist/ ./_site/2025/
34+
run: |
35+
mkdir -p _site/2025
36+
cp -r ./2025/dist/ ./_site/2025/
3537
3638
- name: Upload artifact
3739
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)