From 56e9d2b1d1e64d8eb4878103699bdb519a322fc5 Mon Sep 17 00:00:00 2001 From: Kevin Peng Date: Sun, 20 Apr 2025 06:51:05 +0800 Subject: [PATCH] put the assets into right folders --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6505ee4..cb0e3f7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,9 +16,9 @@ jobs: - name: Build project run: | mkdir -p dist - cp -r src/css/* dist/ - cp -r src/js/* dist/ - cp -r src/images/* dist/ + cp -r src/css/* dist/css + cp -r src/js/* dist/js + cp -r src/images/* dist/images - name: Deploy to gh-pages uses: peaceiris/actions-gh-pages@v4