Add file name argument to publish workflow (#4686)

This commit is contained in:
Allen Byrne 2024-08-01 15:52:46 -05:00 committed by GitHub
parent 26f052c6f2
commit 9dad0f9abc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
@ -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: |