diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-08-16 13:14:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 13:14:21 (GMT) |
commit | 7025c5f10918638254bec883abacbebf148d79cf (patch) | |
tree | 380a133ce1402120d5de0fa73b3118ac72f7fb77 /.github | |
parent | 891d00d7026a623939c9ff964bdc4377a02bf6c5 (diff) | |
download | hdf5-7025c5f10918638254bec883abacbebf148d79cf.zip hdf5-7025c5f10918638254bec883abacbebf148d79cf.tar.gz hdf5-7025c5f10918638254bec883abacbebf148d79cf.tar.bz2 |
restore CI tarball name prefix to match bin/release (#3385)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tarball.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index 844f5a1..fd84f10 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 |