Updated deployment script, correct build command
All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 1s

This commit is contained in:
2025-07-05 20:53:17 -04:00
parent ea4a4c805a
commit b6bb70f63b
2 changed files with 3 additions and 3 deletions

View File

@ -28,8 +28,8 @@ jobs:
- name: Build site
if: env.should_deploy == 'true'
run: |
cd ./src
npx @11ty/eleventy
npm run build
echo "Site built successfully."
- name: Deploy folder
if: env.should_deploy == 'true'

View File

@ -4,7 +4,7 @@
"description": "My personal blog",
"scripts": {
"start": "npx @11ty/eleventy --input ./src --serve",
"build": "npx @11ty/eleventy --input .src",
"build": "npx @11ty/eleventy --input ./src",
"clean": "rm -rf {_site,./src/_site}"
},
"repository": {