diff options
Diffstat (limited to '.github/workflows')
-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 |