From 6f8d11e0112b563fa1c8cbda7e6e7d787eadd513 Mon Sep 17 00:00:00 2001 From: Paul Gessinger Date: Sat, 14 Dec 2024 12:42:46 +0100 Subject: [PATCH] fix naming --- .github/workflows/spack.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/spack.yml b/.github/workflows/spack.yml index 1917a84..494727f 100644 --- a/.github/workflows/spack.yml +++ b/.github/workflows/spack.yml @@ -111,7 +111,8 @@ jobs: - name: Lockfile bookkeeping run: | arch=$(spack arch --family) - echo "TARGET_TRIPLET=${arch}_${{ inputs.compiler }}" >> "$GITHUB_ENV" + export TARGET_TRIPLET="${arch}_${{ inputs.compiler }}" + echo "TARGET_TRIPLET=${TARGET_TRIPLET}" >> "$GITHUB_ENV" cp spack.lock "spack_${TARGET_TRIPLET}.lock" if [ "${{ inputs.default }}" != "" ]; then # this will be become the default combination for this architecture