Skip to content

Commit

Permalink
Correct the uncompress of the doxygen file (#735)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Aug 5, 2024
1 parent b4903e3 commit e1b123f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ on:
description: 'HDF4 target bucket directory'
type: string
required: true
permissions:
contents: read

permissions:
contents: read

jobs:
publish-tag:
Expand Down Expand Up @@ -47,9 +48,9 @@ jobs:
aws s3 sync ./HDF4 s3://${{ secrets.AWS_S3_BUCKET }}/${{ vars.TARGET_PATH }}/${{ inputs.target_dir }}/downloads --delete
- name: Uncompress source (Linux)
run: tar -zxvf ${{ github.workspace }}/HDF4/${{ inputs.use_hdf }}.doxygen.tar.gz
run: unzipf ${{ github.workspace }}/HDF4/${{ inputs.use_hdf }}.doxygen.zip

- name: Sync userguide to S3 bucket
run: |
aws s3 sync ./HDF4/doxygen s3://${{ secrets.AWS_S3_BUCKET }}/${{ vars.TARGET_PATH }}/${{ inputs.target_dir }}/documentation/doxygen --delete
aws s3 sync ./${{ inputs.use_hdf }}.doxygen s3://${{ secrets.AWS_S3_BUCKET }}/${{ vars.TARGET_PATH }}/${{ inputs.target_dir }}/documentation/doxygen --delete

0 comments on commit e1b123f

Please sign in to comment.