Skip to content

Commit

Permalink
fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
bastipnt committed Dec 10, 2024
1 parent d191db7 commit f233722
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ concurrency:
group: "pages"
cancel-in-progress: true

defaults:
run:
working-directory: packages/frontend

jobs:
build:
environment:
Expand All @@ -44,13 +40,13 @@ jobs:
~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
- name: Install dependencies
run: bun install
run: bun --filter 'tracking-survey-frontend' install
- name: Build with Bun
run: bun run build
run: bun --filter 'tracking-survey-frontend' run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: dist
path: packages/frontend/dist

deploy:
environment:
Expand Down

0 comments on commit f233722

Please sign in to comment.