Skip to content

Commit

Permalink
updated PR with review input
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld committed May 16, 2024
1 parent 6f71423 commit e74956e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
31 changes: 19 additions & 12 deletions .github/workflows/release-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,18 +148,25 @@ jobs:
name: abi-reports
path: ${{ github.workspace }}

# - name: Get published non-versioned source
# uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
# if: ${{ (inputs.use_environ == 'release') }}
# with:
# name: cp-to-non-versioned
# path: ${{ github.workspace }}
#
# - name: Create sha256 sums for non-versioned files
# if: ${{ (inputs.use_environ == 'release') }}
# run: |
# sha256sum hdf5.tar.gz >> hdf5.sha256sums.txt
# sha256sum hdf5.zip >> hdf5.sha256sums.txt
- name: Get published non-versioned source (tgz)
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
if: ${{ (inputs.use_environ == 'release') }}
with:
name: tgz-tarball_nover
path: ${{ github.workspace }}

- name: Get published non-versioned source (zip)
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
if: ${{ (inputs.use_environ == 'release') }}
with:
name: zip-tarball_nover
path: ${{ github.workspace }}

- name: Create sha256 sums for non-versioned files
if: ${{ (inputs.use_environ == 'release') }}
run: |
sha256sum hdf5.tar.gz >> hdf5.sha256sums.txt
sha256sum hdf5.zip >> hdf5.sha256sums.txt
- name: Create sha256 sums for files
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,6 @@ jobs:
run: |
mv hdf5-${{ steps.version.outputs.SOURCE_TAG }}.tar.gz ${{ inputs.use_tag }}.tar.gz
mv hdf5-${{ steps.version.outputs.SOURCE_TAG }}.zip ${{ inputs.use_tag }}.zip
cp ${{ inputs.use_tag }}.tar.gz hdf5.tar.gz
cp ${{ inputs.use_tag }}.zip hdf5.zip
shell: bash

- name: cp-to-non-versioned
Expand Down

0 comments on commit e74956e

Please sign in to comment.