From 4f58d93749eb64325ff3db78e7b20ea85e07c9af Mon Sep 17 00:00:00 2001 From: Andrew Bassett <43486400+apbassett@users.noreply.github.com> Date: Tue, 19 Nov 2024 12:08:32 -0500 Subject: [PATCH] 22209: Updates package name of GLIBC 2.28 build (#307) Necessary to avoid a naming conflict during releases between the two Linux/amd64 builds. --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e2f540ad..5f69d956 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -146,6 +146,12 @@ jobs: - name: CMake Package run: cmake --build --preset $PRESET --target package + - name: Rename Package + run: | + # Necessary so that there are no naming conflicts between the two amd64 packages (GLIBC 2.28/2.29) at release time, + # where GitHub does not allow a distinct "artifact name" + mv ./out/package/amalgam-*.tar.gz ./out/package/amalgam-${{ inputs.version }}-${{ matrix.preset.platform }}-${{ matrix.preset.arch }}-228.tar.gz + - name: Upload Artifact uses: actions/upload-artifact@v4 with: @@ -337,7 +343,7 @@ jobs: - name: Extract Amalgam run: | mkdir ./amalgam - tar -xvf ./amalgam-${{ inputs.version }}-linux-amd64.tar.gz -C ./amalgam + tar -xvf ./amalgam-${{ inputs.version }}-linux-amd64-228.tar.gz -C ./amalgam - name: Smoke test run: |