diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index 6123e8f9..71fbe9c8 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -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 @@ -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: | @@ -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: |