Skip to content

Commit

Permalink
build: fix: "bun i" runs on ./web
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidapaulopt committed Dec 20, 2024
1 parent 8c69d1b commit bc5173a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
bun-version: latest
- name: Install bun dependencies
run: bun i
run: bun i --cwd ./web

- name: Install dependencies
run: go install github.com/a-h/templ/cmd/templ@latest
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
with:
bun-version: latest
- name: Install bun dependencies
run: bun i
run: bun i --cwd ./web

- uses: sigstore/[email protected]

- name: dockerhub-login
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
with:
bun-version: latest
- name: Install bun dependencies
run: bun i
run: bun i --cwd ./web

- uses: sigstore/[email protected]
- name: dockerhub-login
if: startsWith(github.ref, 'refs/tags/v')
Expand Down

0 comments on commit bc5173a

Please sign in to comment.