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 ec8e002 commit cb3b499Copy full SHA for cb3b499
.github/workflows/tests-integ-release.yml
@@ -115,15 +115,13 @@ jobs:
115
116
#NOTE: This step should succeed. The role should have permission only to list all buckets.
117
- name: list buckets
118
- run: |
119
- aws s3 ls
+ run: aws s3 ls > /dev/null
120
121
#NOTE: This step should fail. we don't want the role to have permission to see the bucket contents.
122
- name: try to list bucket contents
123
id: bucketContentsStep
124
continue-on-error: true
125
126
- aws s3 ls s3://cawsc-integ-tests-bucket
+ run: aws s3 ls s3://cawsc-integ-tests-bucket > /dev/null
127
128
#But the test fails if we could list the bucket contents.
129
- name: fail if we can list bucket contents
0 commit comments