Skip to content

Commit

Permalink
ci: change buid out dir in deploy workflow (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigBalthazar authored Jan 24, 2025
1 parent 46afe54 commit 01e81b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# this should match the `pages` option in your adapter-static options
path: 'build/'
path: 'dist/'

deploy:
needs: build_site
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/semantic-pr.yml

This file was deleted.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
Expand Down

0 comments on commit 01e81b2

Please sign in to comment.