Skip to content

Commit bedaff4

Browse files
committed
remove prefix from binary name
1 parent 70db280 commit bedaff4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ant.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
if: ${{ (inputs.use_environ == 'snapshots') }}
195195
run: |
196196
cd build/dist
197-
mv hdfview-${{ inputs.snap_name }}-win64.zip ${{ steps.set-file-base.outputs.FILE_BASE }}-win64.zip
197+
mv ${{ inputs.snap_name }}-win64.zip ${{ steps.set-file-base.outputs.FILE_BASE }}-win64.zip
198198
shell: bash
199199

200200
- name: List files for the space (Windows)
@@ -357,7 +357,7 @@ jobs:
357357
if: ${{ (inputs.use_environ == 'snapshots') }}
358358
run: |
359359
cd build/dist
360-
mv hdfview-${{ inputs.snap_name }}-Linux-x86_64.tar.gz ${{ steps.set-file-base.outputs.FILE_BASE }}-Linux-x86_64.tar.gz
360+
mv ${{ inputs.snap_name }}-Linux-x86_64.tar.gz ${{ steps.set-file-base.outputs.FILE_BASE }}-Linux-x86_64.tar.gz
361361
shell: bash
362362

363363
- name: List files in the space (Linux)
@@ -519,7 +519,7 @@ jobs:
519519
if: ${{ (inputs.use_environ == 'snapshots') }}
520520
run: |
521521
cd build/dist
522-
mv hdfview-${{ inputs.snap_name }}-Darwin.tar.gz ${{ steps.set-file-base.outputs.FILE_BASE }}-Darwin.tar.gz
522+
mv ${{ inputs.snap_name }}-Darwin.tar.gz ${{ steps.set-file-base.outputs.FILE_BASE }}-Darwin.tar.gz
523523
shell: bash
524524

525525
- name: List files in the space (mac)

0 commit comments

Comments
 (0)