Skip to content

Commit 5856c85

Browse files
committed
install bun before setting external registry
1 parent b771f92 commit 5856c85

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
HEAD_BRANCH_NAME: ${{ github.head_ref }}
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
submodules: true
3030

.github/workflows/publish.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ jobs:
2121
runs-on: zondax-runners
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
25+
26+
- uses: oven-sh/setup-bun@v1
27+
with:
28+
bun-version: latest
2529

2630
- name: Install node
2731
uses: actions/setup-node@v3
2832
with:
2933
registry-url: 'https://registry.npmjs.org'
3034
scope: '@zondax'
3135

32-
- uses: oven-sh/setup-bun@v1
33-
3436
- run: bun install
3537

3638
- run: bun run build

0 commit comments

Comments
 (0)