diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-07-08 13:12:25 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-07-08 13:12:25 -0400 |
commit | 0d4e5b6bf8804806260c8295456410bca63c8874 (patch) | |
tree | b0e2f7869428436af9c0067a49416d3dd2bfc737 /.github/workflows | |
parent | 1ec6c744048a2905b0f2bf83f035a8fb8798dbdf (diff) |
SL-18837: Use runner.temp rather than $RUNNER_TEMP.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f585fa1c39..729b0c54e5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,7 +24,7 @@ jobs: - runner: macos-12-xl runs-on: ${{ matrix.runner }} env: - APR_LOG: "$RUNNER_TEMP/apr.log" + APR_LOG: "${{ runner.temp }}/apr.log" AUTOBUILD_ADDRSIZE: ${{ matrix.addrsize }} AUTOBUILD_BUILD_ID: ${{ github.run_id }} # authorizes fetching private constituent packages |