Skip to content

Commit

Permalink
Add file name argument to publish workflow (#4686)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Aug 1, 2024
1 parent 26f052c commit 9dad0f9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
description: 'HDF5 Release version tag'
type: string
required: true
file_name:
description: 'HDF5 Release file name base'
type: string
required: true
target_dir:
description: 'HDF5 target bucket directory'
type: string
Expand Down Expand Up @@ -48,7 +52,7 @@ jobs:
aws s3 sync ./HDF5 s3://${{ secrets.AWS_S3_BUCKET }}/${{ vars.TARGET_PATH }}/${{ inputs.target_dir }}/downloads --delete
- name: Uncompress source (Linux)
run: tar -zxvf ${{ github.workspace }}/HDF5/${{ inputs.use_hdf }}.doxygen.tar.gz
run: tar -zxvf ${{ github.workspace }}/HDF5/${{ inputs.file_name }}.doxygen.tar.gz

- name: Sync userguide to S3 bucket
run: |
Expand Down

0 comments on commit 9dad0f9

Please sign in to comment.