Skip to content

Commit 2795595

Browse files
committed
feat: update GitHub Actions workflow to separate markdown and SVG files during deployment
1 parent f9c11ed commit 2795595

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pages.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
- name: Move articles to correct location
4040
run: |
4141
mkdir -p src/routes/posts/mdarticles/[slug]/
42-
mv templorary/mdarticles/* src/routes/posts/mdarticles/[slug]/
42+
mkdir -p lib/assets/mdsvg
43+
mv templorary/mdarticles/*md src/routes/posts/mdarticles/[slug]/
44+
mv templorary/mdarticles/*svg lib/assets/mdsvg
4345
rm -rf templorary
4446
4547
- name: Setup Node.js

0 commit comments

Comments
 (0)