From 392197b1418f9da4e46b4b26cc97de86767eeb32 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 27 Nov 2023 16:54:50 -0600 Subject: [PATCH 1/2] Show the download path --- .github/workflows/release-files.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-files.yml b/.github/workflows/release-files.yml index 44925e5d..f816f682 100644 --- a/.github/workflows/release-files.yml +++ b/.github/workflows/release-files.yml @@ -104,6 +104,11 @@ jobs: name: tgz-ubuntu-2204-binary path: ${{ github.workspace }} + - name: List files for the space + run: | + ls -l ${{ github.workspace }} + ls ${{ runner.workspace }}/hdfview + - name: Store snapshot name run: | echo "${{ steps.get-file-base.outputs.FILE_BASE }}" > ./last-file.txt @@ -120,7 +125,7 @@ jobs: ${{ steps.get-file-base.outputs.FILE_BASE }}.tar.gz ${{ steps.get-file-base.outputs.FILE_BASE }}.zip ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204.tar.gz - ${{ steps.get-file-base.outputs.FILE_BASE }}-win_vs2022.zip + ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022.zip if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` - name: Release tag From 28b46de236ab1d7043135218f5a2a55c886f44b1 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Mon, 27 Nov 2023 17:05:48 -0600 Subject: [PATCH 2/2] Correct file names --- .github/workflows/release-files.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-files.yml b/.github/workflows/release-files.yml index f816f682..ef6c67d0 100644 --- a/.github/workflows/release-files.yml +++ b/.github/workflows/release-files.yml @@ -124,8 +124,8 @@ jobs: last-file.txt ${{ steps.get-file-base.outputs.FILE_BASE }}.tar.gz ${{ steps.get-file-base.outputs.FILE_BASE }}.zip - ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204.tar.gz - ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022.zip + ${{ steps.get-file-base.outputs.FILE_BASE }}-Linux-x86_64.tar.gz + ${{ steps.get-file-base.outputs.FILE_BASE }}-win64.zip if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` - name: Release tag @@ -139,8 +139,8 @@ jobs: files: | ${{ steps.get-file-base.outputs.FILE_BASE }}.tar.gz ${{ steps.get-file-base.outputs.FILE_BASE }}.zip - ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204.tar.gz - ${{ steps.get-file-base.outputs.FILE_BASE }}-win_vs2022.zip + ${{ steps.get-file-base.outputs.FILE_BASE }}-Linux-x86_64.tar.gz + ${{ steps.get-file-base.outputs.FILE_BASE }}-win64.zip if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` - name: List files for the space (Linux)