Skip to content

Commit

Permalink
add fixing the urls
Browse files Browse the repository at this point in the history
  • Loading branch information
lyssieth committed Jan 4, 2024
1 parent 311ffdc commit cff19cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
workflow_dispatch:

permissions:
contents: read
Expand All @@ -29,7 +30,9 @@ jobs:
- name: Install Dependencies
run: npm i -g pnpm && pnpm i
- name: Build
run: pnpm build
run: |
pnpm build
pnpm fixup
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json"
"check": "svelte-check --tsconfig ./tsconfig.json",
"fixup": "sed -e 's/=\"\\//=\"/' -i '' dist/index.html"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.1",
Expand Down

0 comments on commit cff19cc

Please sign in to comment.