Skip to content

Commit

Permalink
fix: allow capital letters in S3 uri
Browse files Browse the repository at this point in the history
S3 uris are allowed to have capital letters.
  • Loading branch information
CallumNZ committed Aug 2, 2024
1 parent 46dccb7 commit 906df37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-copy-to-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
echo "session-name=$SESSION_NAME" >> $GITHUB_OUTPUT
- name: validate
env:
REGEXP_S3_BUCKET: ^s3://[a-z0-9_/.-]+$
REGEXP_S3_BUCKET: ^s3://[a-zA-Z0-9_/.-]+$
CP_OR_SYNC: ${{ inputs.cp-or-sync }}
S3_BUCKET: ${{ inputs.s3-bucket }}
DIRECTION: ${{ inputs.direction }}
Expand Down

0 comments on commit 906df37

Please sign in to comment.