We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca44a2f commit 735542dCopy full SHA for 735542d
.github/workflows/publish-branch.yml
@@ -4,6 +4,10 @@ name: hdfview publish files in HDFVIEW from branch to S3
4
on:
5
workflow_dispatch:
6
inputs:
7
+ local_dir:
8
+ description: 'HDFView local directory'
9
+ type: string
10
+ required: true
11
target_dir:
12
description: 'HDFView target bucket directory'
13
type: string
@@ -36,5 +40,5 @@ jobs:
36
40
37
41
- name: Sync dir to S3 bucket
38
42
run: |
39
- aws s3 sync ./HDFVIEW s3://${{ secrets.AWS_S3_BUCKET }}/${{ vars.TARGET_PATH }}/${{ inputs.target_dir }}
43
+ aws s3 sync ./HDFVIEW/${{ inputs.local_dir }} s3://${{ secrets.AWS_S3_BUCKET }}/${{ vars.TARGET_PATH }}/${{ inputs.target_dir }}
44
0 commit comments