-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathblueprint.cue
More file actions
60 lines (56 loc) · 1.05 KB
/
blueprint.cue
File metadata and controls
60 lines (56 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
global: {
ci: {
local: [
"^check(-.*)?$",
"^build(-.*)?$",
"^package(-.*)?$",
"^test(-.*)?$",
]
registries: [
ci.providers.aws.ecr.registry,
]
release: docs: {
bucket: "docs.dev.projectcatalyst.io"
url: "https://docs.dev.projectcatalyst.io/"
}
providers: {
aws: {
region: "eu-central-1"
ecr: registry: "332405224602.dkr.ecr.eu-central-1.amazonaws.com"
role: "arn:aws:iam::332405224602:role/ci"
}
docker: credentials: {
provider: "aws"
path: "global/ci/docker"
}
earthly: {
satellite: credentials: {
provider: "aws"
path: "global/ci/ci-tls"
}
version: "0.8.15"
}
github: registry: "ghcr.io"
tailscale: {
credentials: {
provider: "aws"
path: "global/ci/tailscale"
}
tags: "tag:cat-github"
version: "latest"
}
}
secrets: [
{
name: "GITHUB_TOKEN"
optional: true
provider: "env"
path: "GITHUB_TOKEN"
},
]
}
repo: {
defaultBranch: "main"
name: "input-output-hk/catalyst-libs"
}
}