Skip to content

Instantly share code, notes, and snippets.

@ifnull
Created September 25, 2020 23:05
Show Gist options
  • Save ifnull/f36ee3466ecc70e46a1b9e9cfd1c112a to your computer and use it in GitHub Desktop.
Save ifnull/f36ee3466ecc70e46a1b9e9cfd1c112a to your computer and use it in GitHub Desktop.
Continuous Integration for Unity with CircleCI - Sample File
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListAllMyBuckets"
],
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::projectname-unity-builds"
]
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::projectname-unity-builds/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment