Skip to content

Commit c9fadd8

Browse files
committed
fix invalid actions
1 parent e40f73a commit c9fadd8

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,10 @@ jobs:
8080
echo NAVIGATION_DATA_SIGNED_URL=${{ secrets.NAVIGATION_DATA_SIGNED_URL }} >> .env
8181
echo SENTRY_URL=${{ secrets.SENTRY_URL }} >> .env
8282
83+
- name: Install Bun
84+
uses: oven-sh/setup-bun@v2
85+
8386
- name: Build WASM
84-
uses: oven-sh/setup-bun@v2
8587
run: |
8688
bun install
8789
bun run package

.github/workflows/pre-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ jobs:
1818
run: |
1919
echo SENTRY_URL=${{ secrets.SENTRY_URL }} >> .env
2020
21+
- name: Install Bun
22+
uses: oven-sh/setup-bun@v2
23+
2124
- name: Build WASM
22-
uses: oven-sh/setup-bun@v2
2325
run: |
2426
bun install
25-
bun run package
2627
2728
- name: Pre-Release
2829
uses: softprops/action-gh-release@v1

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ jobs:
1919
run: |
2020
echo SENTRY_URL=${{ secrets.SENTRY_URL }} >> .env
2121
22+
- name: Install Bun
23+
uses: oven-sh/setup-bun@v2
24+
2225
- name: Build WASM
23-
uses: oven-sh/setup-bun@v2
2426
run: |
2527
bun install
26-
bun run package
2728
2829
- name: Release
2930
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)