From fd1f47641c5d463fec0c577fe1213b250fc9abe5 Mon Sep 17 00:00:00 2001 From: Allen Byrne <50328838+byrnHDF@users.noreply.github.com> Date: Mon, 3 Jun 2024 13:04:33 -0500 Subject: [PATCH] Correct name of release tarballs (#278) --- .github/workflows/tarball.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index 008e77c1..b946f9e7 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: |