Skip to content

Commit

Permalink
Fix typos (#254)
Browse files Browse the repository at this point in the history
* Correct version processing
* Fix issue with tags vs names
  • Loading branch information
byrnHDF authored May 31, 2024
1 parent e009573 commit 9466111
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ant-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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') }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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') }}

Expand Down Expand Up @@ -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') }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 9466111

Please sign in to comment.