Skip to content

Commit

Permalink
package.json script fix for test deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjamuffin99 committed Mar 4, 2024
1 parent 786e2b8 commit 3816829
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: |
ls -lah
npm install
npm run build ${{ inputs.deploy_gh_pages && format('{0}{1}', '-- --pathprefix=', github.event.repository.name ) || '' }}
npm run build ${{ inputs.deploy_gh_pages && format('{0}', github.event.repository.name ) || '' }}
ls -lah
haxe --run RemoveRedirects
# - name: Highlighting
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"start": "run-p start:*",
"start:11ty": "eleventy --serve",
"start:style": "sass --watch ./scss/style.scss ./out/styles/style.css",
"build": "run-s build:*",
"build": "run-s \"build:11ty -- --pathprefix={1}\" build:style --",
"build:11ty": "eleventy",
"build:style": "sass ./scss/style.scss ./out/styles/style.css",
"test": "run-s test:* -c",
Expand Down

0 comments on commit 3816829

Please sign in to comment.