Skip to content

Commit

Permalink
Master syn (#198)
Browse files Browse the repository at this point in the history
* Correct syntax

* Use double slash

* Just try both ways
  • Loading branch information
byrnHDF authored May 20, 2024
1 parent ff7c526 commit cface66
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 8 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/ant-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,15 @@ jobs:
with:
repo: 'HDFGroup/hdf4'
version: 'tags/snapshot'
regex: true
file: '\\$\\{\\{ inputs.use_hdf \\}\\}-osx.*\\.tar.gz'
file: '${{ inputs.use_hdf }}-osx.tar.gz'

- name: Get hdf4 release osx12
if: failure()
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: 'HDFGroup/hdf4'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-osx12.tar.gz'

- name: List files for the space (mac)
run: |
Expand All @@ -409,8 +416,15 @@ jobs:
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
regex: true
file: '\\$\\{\\{ inputs.use_hdf5 \\}\\}-osx.*\\.tar.gz'
file: '${{ inputs.use_hdf5 }}-osx.tar.gz'

- name: Get hdf5 release osx12
if: failure()
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf5 }}-osx12.tar.gz'

- name: List files for the space (mac)
run: |
Expand Down
22 changes: 18 additions & 4 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,15 @@ jobs:
with:
repo: 'HDFGroup/hdf4'
version: 'tags/snapshot'
regex: true
file: '\\$\\{\\{ inputs.use_hdf \\}\\}-osx.*\\.tar.gz'
file: '${{ inputs.use_hdf }}-osx.tar.gz'

- name: Get hdf4 release osx12
if: failure()
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: 'HDFGroup/hdf4'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf }}-osx12.tar.gz'

- name: List files for the space (mac)
run: |
Expand All @@ -409,8 +416,15 @@ jobs:
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
regex: true
file: '\\$\\{\\{ inputs.use_hdf5 \\}\\}-osx.*\\.tar.gz'
file: '${{ inputs.use_hdf5 }}-osx.tar.gz'

- name: Get hdf5 release osx12
if: failure()
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: 'HDFGroup/hdf5'
version: 'tags/snapshot'
file: '${{ inputs.use_hdf5 }}-osx12.tar.gz'

- name: List files for the space (mac)
run: |
Expand Down

0 comments on commit cface66

Please sign in to comment.