Skip to content

Commit 69ce147

Browse files
committed
Fix variable access
1 parent 462b26e commit 69ce147

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@ jobs:
148148
- name: Build mimalloc object
149149
run: |
150150
set -euxo pipefail
151-
curl -sSfL "https://github.com/microsoft/mimalloc/archive/refs/tags/v${{ MIMALLOC_VERSION }}.tar.gz" | tar xz
151+
curl -sSfL "https://github.com/microsoft/mimalloc/archive/refs/tags/v${{ env.MIMALLOC_VERSION }}.tar.gz" | tar xz
152152
export CC=clang
153-
cmake -S "mimalloc-${{ MIMALLOC_VERSION }}" -B mimalloc-build \
153+
cmake -S "mimalloc-${{ env.MIMALLOC_VERSION }}" -B mimalloc-build \
154154
-DMI_BUILD_SHARED=OFF \
155155
-DMI_BUILD_STATIC=ON \
156156
-DMI_BUILD_OBJECT=OFF \
157157
-DCMAKE_BUILD_TYPE=Release
158158
cmake --build mimalloc-build --target mimalloc-static
159-
cp mimalloc-${{ MIMALLOC_VERSION }}/LICENSE LICENSE.mimalloc
159+
cp mimalloc-${{ env.MIMALLOC_VERSION }}/LICENSE LICENSE.mimalloc
160160
- name: Build static binary
161161
run: |
162162
# To improve performance with musl, increase the stack size to 512KiB and

0 commit comments

Comments
 (0)