diff --git a/.github/workflows/ant-app.yml b/.github/workflows/ant-app.yml index 5a8083c5..f7b39087 100644 --- a/.github/workflows/ant-app.yml +++ b/.github/workflows/ant-app.yml @@ -5,10 +5,14 @@ on: workflow_call: inputs: use_hdf: - description: "The hdf4 base name of the binaries" + description: "The hdf4 tag and base name of the binaries" required: true type: string use_hdf5: + description: "The hdf5 tag name of the binaries" + required: true + type: string + name_hdf5: description: "The hdf5 base name of the binaries" required: true type: string @@ -59,7 +63,7 @@ jobs: uses: dsaltares/fetch-gh-release-asset@master with: repo: 'HDFGroup/hdf4' - version: '${{ inputs.use_hdf }}' + version: 'tags/${{ inputs.use_hdf }}' file: '${{ inputs.use_hdf }}-win-vs2022_cl.zip' if: ${{ (inputs.use_environ == 'release') }} diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 7e0aca19..a6960688 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -5,7 +5,7 @@ on: workflow_call: inputs: use_hdf: - description: "The hdf4 tag base name of the binaries" + description: "The hdf4 tag and base name of the binaries" required: true type: string use_hdf5: @@ -292,7 +292,7 @@ jobs: uses: dsaltares/fetch-gh-release-asset@master with: repo: 'HDFGroup/hdf5' - version: 'tags${{ inputs.use_hdf5 }}' + version: 'tags/${{ inputs.use_hdf5 }}' file: '${{ inputs.name_hdf5 }}-ubuntu-2204_gcc.tar.gz' if: ${{ (inputs.use_environ == 'release') }} @@ -495,7 +495,7 @@ jobs: uses: dsaltares/fetch-gh-release-asset@master with: repo: 'HDFGroup/hdf5' - version: 'tag/${{ inputs.use_hdf5 }}' + version: 'tags/${{ inputs.use_hdf5 }}' file: '${{ inputs.name_hdf5 }}-osx.tar.gz' if: ${{ (inputs.use_environ == 'release') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dcdab199..0aaa0bdc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: required: false default: snapshot use_tag4: - description: 'HDF Release version tag' + description: 'HDF Release version tag and base name' type: string required: false default: hdf4.3.0 @@ -18,7 +18,7 @@ on: type: string required: false default: hdf5_1.14.4.3 - use_tag5: + name_tag5: description: 'HDF5 Release version base name' type: string required: false