File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
actions/update-link-index Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,6 @@ inputs:
24
24
runs :
25
25
using : composite
26
26
steps :
27
- - name : Update Link Index
28
- run : |
29
- echo "Updating link index"
30
27
- name : Generate AWS Role ARN
31
28
id : role_arn
32
29
shell : python
50
47
role-to-assume : ${{ steps.role_arn.outputs.result }}
51
48
aws-region : us-east-1
52
49
- name : Upload Link Reference File to S3
53
- bash : shell
50
+ shell : bash
51
+ env :
52
+ LINK_REFERENCE_FILE : ${{ inputs.link_reference_file }}
54
53
run : |
55
54
repository_name=$(basename "${GITHUB_REPOSITORY}")
56
- aws s3 cp ${{ inputs.link_reference_file }} "s3://${{ inputs.aws_s3_bucket_name }}/${repository_name}.json"
55
+ aws s3 cp "${LINK_REFERENCE_FILE}" "s3://${{ inputs.aws_s3_bucket_name }}/${repository_name}.json"
You can’t perform that action at this time.
0 commit comments