Skip to content

Commit 1f059c0

Browse files
committed
runner.temp scope fix
1 parent fb53d82 commit 1f059c0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/npm-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ permissions:
1111
env:
1212
ENTRYPOINT: packages/node-runtime/src/cli.ts
1313
OUTDIR: "cli-out"
14-
BUN_INSTALL_CACHE_DIR: ${{ runner.temp }}/bun-cache
1514

1615
jobs:
1716
build:
@@ -73,6 +72,8 @@ jobs:
7372

7473
- run: mkdir -p "${{ env.BUN_INSTALL_CACHE_DIR }}"
7574
shell: bash
75+
env:
76+
BUN_INSTALL_CACHE_DIR: ${{ runner.temp }}/bun-cache
7677

7778
- name: Build for ${{ matrix.target }}
7879
run: |
@@ -82,6 +83,8 @@ jobs:
8283
"${{ env.ENTRYPOINT }}" \
8384
--outfile "${{ env.OUTDIR }}/cryptit-cli-${{ matrix.target }}${{ matrix.ext }}"
8485
shell: bash
86+
env:
87+
BUN_INSTALL_CACHE_DIR: ${{ runner.temp }}/bun-cache
8588

8689
- name: Upload artifact (${{
8790
matrix.target }})

0 commit comments

Comments
 (0)