Skip to content

Commit

Permalink
Correct name of release tarballs (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Jun 3, 2024
1 parent b36d7ad commit fd1f476
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
then
FILE_NAME_BASE=$(echo "snapshot")
else
FILE_NAME_BASE=$(echo "hdfview-${{ steps.version.outputs.TAG_VERSION }}")
FILE_NAME_BASE=$(echo "HDFView-${{ steps.version.outputs.TAG_VERSION }}")
fi
fi
echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT
Expand All @@ -138,7 +138,7 @@ jobs:
path: ./hdfsrc/docs/RELEASE.txt
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

- name: Create snapshot source file (tgz and zip)
- name: Create release source file (tgz and zip)
id: create-snapshot-files
if: ${{ (inputs.use_environ == 'release') }}
run: |
Expand All @@ -147,7 +147,7 @@ jobs:
tar -zcvf ${{ steps.set-file-base.outputs.FILE_BASE }}.tar.gz ./${{ steps.set-file-base.outputs.FILE_BASE }}
shell: bash

- name: Create release source file (tgz and zip)
- name: Create snapshot source file (tgz and zip)
id: create-release-files
if: ${{ (inputs.use_environ == 'snapshots') }}
run: |
Expand Down

0 comments on commit fd1f476

Please sign in to comment.