Skip to content

Commit

Permalink
app path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jurdanetac committed Sep 20, 2024
1 parent f8e118f commit a1fbdd5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'app'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -35,6 +38,7 @@ jobs:
with:
node-version: 20
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Build
Expand All @@ -45,7 +49,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# Upload dist folder
path: './dist'
path: './app/dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit a1fbdd5

Please sign in to comment.