Skip to content

Commit d51cd6b

Browse files
authored
Correct syntax (#196)
1 parent 9b0b244 commit d51cd6b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ant-app.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -382,15 +382,15 @@ jobs:
382382
repo: 'HDFGroup/hdf4'
383383
version: 'tags/snapshot'
384384
regex: true
385-
file: '${{ inputs.use_hdf }}-osx.*\\.tar.gz'
385+
file: '\$\{\{ inputs.use_hdf \}\}-osx.*\\.tar.gz'
386386

387387
- name: List files for the space (mac)
388388
run: |
389389
ls -l ${{ github.workspace }}
390390
ls ${{ runner.workspace }}
391391
392392
- name: Uncompress gh binary (mac)
393-
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf }}-osx.*\\.tar.gz
393+
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf }}-osx*.tar.gz
394394

395395
- name: Uncompress hdf4 binary (mac)
396396
run: |
@@ -410,15 +410,15 @@ jobs:
410410
repo: 'HDFGroup/hdf5'
411411
version: 'tags/snapshot'
412412
regex: true
413-
file: '${{ inputs.use_hdf5 }}-osx.*\\.tar.gz'
413+
file: '\$\{\{ inputs.use_hdf5 \}\}-osx.*\\.tar.gz'
414414

415415
- name: List files for the space (mac)
416416
run: |
417417
ls -l ${{ github.workspace }}
418418
ls ${{ runner.workspace }}
419419
420420
- name: Uncompress gh binary (mac)
421-
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf5 }}-osx.*\\.tar.gz
421+
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf5 }}-osx*.tar.gz
422422

423423
- name: Uncompress hdf5 binary (mac)
424424
run: |

.github/workflows/ant.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -382,15 +382,15 @@ jobs:
382382
repo: 'HDFGroup/hdf4'
383383
version: 'tags/snapshot'
384384
regex: true
385-
file: '${{ inputs.use_hdf }}-osx.*\\.tar.gz'
385+
file: '\$\{\{ inputs.use_hdf \}\}-osx.*\\.tar.gz'
386386

387387
- name: List files for the space (mac)
388388
run: |
389389
ls -l ${{ github.workspace }}
390390
ls ${{ runner.workspace }}
391391
392392
- name: Uncompress gh binary (mac)
393-
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf }}-osx.*\\.tar.gz
393+
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf }}-osx*.tar.gz
394394

395395
- name: Uncompress hdf4 binary (mac)
396396
run: |
@@ -410,15 +410,15 @@ jobs:
410410
repo: 'HDFGroup/hdf5'
411411
version: 'tags/snapshot'
412412
regex: true
413-
file: '${{ inputs.use_hdf5 }}-osx.*\\.tar.gz'
413+
file: '\$\{\{ inputs.use_hdf5 \}\}-osx.*\\.tar.gz'
414414

415415
- name: List files for the space (mac)
416416
run: |
417417
ls -l ${{ github.workspace }}
418418
ls ${{ runner.workspace }}
419419
420420
- name: Uncompress gh binary (mac)
421-
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf5 }}-osx.*\\.tar.gz
421+
run: tar -zxvf ${{ github.workspace }}/${{ inputs.use_hdf5 }}-osx*.tar.gz
422422

423423
- name: Uncompress hdf5 binary (mac)
424424
run: |

0 commit comments

Comments
 (0)