From 464baf8643abd0ed45cdc68847f1ed26b83f46e9 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 16 Aug 2023 08:08:37 -0500 Subject: [PATCH] restore CI tarball name prefix to match bin/release --- .github/workflows/tarball.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index 844f5a1fd94..fd84f108805 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -103,9 +103,9 @@ jobs: run: | if [[ '${{ inputs.use_environ }}' == 'snapshots' && '${{ needs.check_commits.outputs.has_changes }}' == 'true' ]] then - FILE_NAME_BASE=$(echo "${{ needs.check_commits.outputs.branch_ref }}-${{ needs.check_commits.outputs.branch_sha }}") + FILE_NAME_BASE=$(echo "hdf5-${{ needs.check_commits.outputs.branch_ref }}-${{ needs.check_commits.outputs.branch_sha }}") else - FILE_NAME_BASE=$(echo "${{ steps.version.outputs.TAG_VERSION }}") + FILE_NAME_BASE=$(echo "hdf5-${{ steps.version.outputs.TAG_VERSION }}") fi echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT shell: bash