Skip to content

Commit c828c81

Browse files
authored
ci: scope runner.temp to steps that use it (#858)
1 parent 0a682c1 commit c828c81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-cli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ permissions:
1313
jobs:
1414
publish:
1515
runs-on: ubuntu-latest
16-
env:
17-
OUT_DIR: ${{ runner.temp }}/release-cli
1816
steps:
1917
- uses: actions/setup-java@v4
2018
with:
@@ -28,6 +26,7 @@ jobs:
2826
- name: Build standalone launcher
2927
shell: bash
3028
env:
29+
OUT_DIR: ${{ runner.temp }}/release-cli
3130
TAG: ${{ inputs.tag }}
3231
VERSION: ${{ inputs.tag }}
3332
run: |
@@ -86,6 +85,7 @@ jobs:
8685
if: steps.release.outputs.exists == 'true'
8786
shell: bash
8887
env:
88+
OUT_DIR: ${{ runner.temp }}/release-cli
8989
GH_TOKEN: ${{ github.token }}
9090
TAG: ${{ inputs.tag }}
9191
run: |

0 commit comments

Comments
 (0)