Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxBittker committed Oct 16, 2024
1 parent 25e18ef commit 2c0dc0c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install and Build
run: |
npm install
npm run build
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
folder: dist
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
publish_branch: gh-pages
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
base: '/wams/',
base: '/warms/',
server: {
host: '0.0.0.0',
},
Expand Down

0 comments on commit 2c0dc0c

Please sign in to comment.