move all assets to src folder

This commit is contained in:
Kevin Peng
2025-04-20 06:33:59 +08:00
parent 59eea95626
commit f51d39ee96

View File

@@ -12,22 +12,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build project
run: |
mkdir -p dist
cp -r src/css/* dist/
cp -r src/js/* dist/
cp -r src/images/* dist/
# Add any build steps here (e.g., minification, bundling)
# Example: npm run build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v4