diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-08-16 12:33:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 12:33:29 (GMT) |
commit | 891d00d7026a623939c9ff964bdc4377a02bf6c5 (patch) | |
tree | 9ec52d19a01c5d866b062530b668121033c90cca /.github/workflows/tarball.yml | |
parent | 8c6bc4e2501c6a2f2e73a800c796599593ee846c (diff) | |
download | hdf5-891d00d7026a623939c9ff964bdc4377a02bf6c5.zip hdf5-891d00d7026a623939c9ff964bdc4377a02bf6c5.tar.gz hdf5-891d00d7026a623939c9ff964bdc4377a02bf6c5.tar.bz2 |
Correct CI settings (#3384)
* Correct CI settings
* Correct plugin file name
Diffstat (limited to '.github/workflows/tarball.yml')
-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 fd84f10..844f5a1 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 "hdf5-${{ needs.check_commits.outputs.branch_ref }}-${{ needs.check_commits.outputs.branch_sha }}") + FILE_NAME_BASE=$(echo "${{ needs.check_commits.outputs.branch_ref }}-${{ needs.check_commits.outputs.branch_sha }}") else - FILE_NAME_BASE=$(echo "hdf5-${{ steps.version.outputs.TAG_VERSION }}") + FILE_NAME_BASE=$(echo "${{ steps.version.outputs.TAG_VERSION }}") fi echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT shell: bash |