From 23d3d633231d0f9beefdfad59ad53d18fce319dd Mon Sep 17 00:00:00 2001 From: "H. Joe Lee" Date: Thu, 21 Mar 2024 13:25:45 -0500 Subject: [PATCH] Use tar.gz extension for ABI reports (#4205) --- .github/workflows/abi-report.yml | 2 +- .github/workflows/release-files.yml | 6 +++--- .github/workflows/remove-files.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/abi-report.yml b/.github/workflows/abi-report.yml index 38cb3820a66..05391bea329 100644 --- a/.github/workflows/abi-report.yml +++ b/.github/workflows/abi-report.yml @@ -170,7 +170,7 @@ jobs: cp ${{ inputs.file_base }}-hdf5_cpp_compat_report.html ${{ runner.workspace }}/buildabi/hdf5 cp ${{ inputs.file_base }}-java_compat_report.html ${{ runner.workspace }}/buildabi/hdf5 cd "${{ runner.workspace }}/buildabi" - tar -zcvf ${{ inputs.file_base }}.html.abi.reports hdf5 + tar -zcvf ${{ inputs.file_base }}.html.abi.reports.tar.gz hdf5 shell: bash - name: Save output as artifact diff --git a/.github/workflows/release-files.yml b/.github/workflows/release-files.yml index 58081a59b11..ec62a2f3d5e 100644 --- a/.github/workflows/release-files.yml +++ b/.github/workflows/release-files.yml @@ -160,7 +160,7 @@ jobs: sha256sum ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip >> sha256sums.txt sha256sum ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz >> sha256sums.txt sha256sum ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip >> sha256sums.txt - sha256sum ${{ steps.get-file-base.outputs.FILE_BASE }}.html.abi.reports >> sha256sums.txt + sha256sum ${{ steps.get-file-base.outputs.FILE_BASE }}.html.abi.reports.tar.gz >> sha256sums.txt - name: Store snapshot name run: | @@ -197,7 +197,7 @@ jobs: ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip - ${{ steps.get-file-base.outputs.FILE_BASE }}.html.abi.reports + ${{ steps.get-file-base.outputs.FILE_BASE }}.html.abi.reports.tar.gz sha256sums.txt if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` @@ -221,7 +221,7 @@ jobs: ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip - ${{ steps.get-file-base.outputs.FILE_BASE }}.html.abi.reports + ${{ steps.get-file-base.outputs.FILE_BASE }}.html.abi.reports.tar.gz sha256sums.txt if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` diff --git a/.github/workflows/remove-files.yml b/.github/workflows/remove-files.yml index edac1158c9d..730949eaec9 100644 --- a/.github/workflows/remove-files.yml +++ b/.github/workflows/remove-files.yml @@ -45,7 +45,7 @@ jobs: token: ${{ github.token }} tag: "${{ inputs.use_tag }}" assets: | - ${{ steps.get-file-base.outputs.FILE_BASE }}.html.abi.reports + ${{ steps.get-file-base.outputs.FILE_BASE }}.html.abi.reports.tar.gz ${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen.zip ${{ steps.get-file-base.outputs.FILE_BASE }}.tar.gz ${{ steps.get-file-base.outputs.FILE_BASE }}.zip