From 9ee5ba9d6aa861633e3deea591b09bf18e6033ee Mon Sep 17 00:00:00 2001 From: Kevin Peng Date: Sun, 20 Apr 2025 06:53:53 +0800 Subject: [PATCH] create subdirectories for build output in deploy workflow --- .github/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index cb0e3f7..423fff2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,9 @@ jobs: - name: Build project run: | - mkdir -p dist + mkdir -p dist/css + mkdir -p dist/js + mkdir -p dist/images cp -r src/css/* dist/css cp -r src/js/* dist/js cp -r src/images/* dist/images