Skip to content

Commit

Permalink
Merge pull request #5 from RyugaRyuzaki/develop
Browse files Browse the repository at this point in the history
 build
  • Loading branch information
RyugaRyuzaki authored May 8, 2024
2 parents a793323 + d6fa31d commit c709b89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# Upload dist folder
path: './dist'
path: './build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default defineConfig(() => {
"@": path.resolve(__dirname, "./src"),
},
},
base: "./bim-modeling",
base: "./bim-modeling/",
build: {
outDir: "build",
},
Expand Down

0 comments on commit c709b89

Please sign in to comment.