Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
fix workflows to not use bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Aug 10, 2024
1 parent 11b2e1e commit cc3f364
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ jobs:
bun-version: latest

- name: Install project dependencies
run: bun run bootstrap:ci
run: |
bun install
# Undo changes to the lockfile that might block release
# when this project is more mature use "bun install --frozen-lockfile"
git checkout -- bun.lockb
- name: Build project
run: bun run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
bun-version: latest

- name: Install dependencies
run: bun run bootstrap
run: bun install

- name: Install dependencies
run: bun run build
Expand Down

0 comments on commit cc3f364

Please sign in to comment.