projen-pipelines 0.0.70 → 0.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +562 -34
- package/API.md +494 -0
- package/lib/awscdk/base.d.ts +1 -1
- package/lib/awscdk/base.js +2 -2
- package/lib/awscdk/bash.js +1 -1
- package/lib/awscdk/github.d.ts +8 -0
- package/lib/awscdk/github.js +38 -36
- package/lib/awscdk/gitlab.js +1 -1
- package/lib/engines/github.d.ts +15 -0
- package/lib/engines/github.js +45 -0
- package/lib/engines/index.d.ts +1 -0
- package/lib/engines/index.js +18 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/steps/artifact-steps.js +7 -1
- package/lib/steps/aws-assume-role.step.js +9 -1
- package/lib/steps/index.d.ts +3 -0
- package/lib/steps/index.js +4 -1
- package/lib/steps/registries.d.ts +15 -0
- package/lib/steps/registries.js +27 -0
- package/lib/steps/step.d.ts +3 -1
- package/lib/steps/step.js +3 -3
- package/package.json +1 -1
package/.jsii
CHANGED
|
@@ -117,6 +117,154 @@
|
|
|
117
117
|
}
|
|
118
118
|
},
|
|
119
119
|
"types": {
|
|
120
|
+
"projen-pipelines.AwsAssumeRoleStep": {
|
|
121
|
+
"assembly": "projen-pipelines",
|
|
122
|
+
"base": "projen-pipelines.PipelineStep",
|
|
123
|
+
"docs": {
|
|
124
|
+
"stability": "stable",
|
|
125
|
+
"summary": "A step that assumes a role in AWS."
|
|
126
|
+
},
|
|
127
|
+
"fqn": "projen-pipelines.AwsAssumeRoleStep",
|
|
128
|
+
"initializer": {
|
|
129
|
+
"docs": {
|
|
130
|
+
"stability": "stable"
|
|
131
|
+
},
|
|
132
|
+
"locationInModule": {
|
|
133
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
134
|
+
"line": 23
|
|
135
|
+
},
|
|
136
|
+
"parameters": [
|
|
137
|
+
{
|
|
138
|
+
"docs": {
|
|
139
|
+
"summary": "- The projen project reference."
|
|
140
|
+
},
|
|
141
|
+
"name": "project",
|
|
142
|
+
"type": {
|
|
143
|
+
"fqn": "projen.Project"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "config",
|
|
148
|
+
"type": {
|
|
149
|
+
"fqn": "projen-pipelines.AwsAssumeRoleStepConfig"
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
"kind": "class",
|
|
155
|
+
"locationInModule": {
|
|
156
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
157
|
+
"line": 21
|
|
158
|
+
},
|
|
159
|
+
"methods": [
|
|
160
|
+
{
|
|
161
|
+
"docs": {
|
|
162
|
+
"remarks": "Should be implemented by subclasses.",
|
|
163
|
+
"stability": "stable",
|
|
164
|
+
"summary": "Generates a configuration for a GitHub Actions step."
|
|
165
|
+
},
|
|
166
|
+
"locationInModule": {
|
|
167
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
168
|
+
"line": 40
|
|
169
|
+
},
|
|
170
|
+
"name": "toGithub",
|
|
171
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
172
|
+
"returns": {
|
|
173
|
+
"type": {
|
|
174
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"docs": {
|
|
180
|
+
"remarks": "Should be implemented by subclasses.",
|
|
181
|
+
"stability": "stable",
|
|
182
|
+
"summary": "Generates a configuration for a GitLab CI step."
|
|
183
|
+
},
|
|
184
|
+
"locationInModule": {
|
|
185
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
186
|
+
"line": 27
|
|
187
|
+
},
|
|
188
|
+
"name": "toGitlab",
|
|
189
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
190
|
+
"returns": {
|
|
191
|
+
"type": {
|
|
192
|
+
"fqn": "projen-pipelines.GitlabStepConfig"
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"name": "AwsAssumeRoleStep",
|
|
198
|
+
"symbolId": "src/steps/aws-assume-role.step:AwsAssumeRoleStep"
|
|
199
|
+
},
|
|
200
|
+
"projen-pipelines.AwsAssumeRoleStepConfig": {
|
|
201
|
+
"assembly": "projen-pipelines",
|
|
202
|
+
"datatype": true,
|
|
203
|
+
"docs": {
|
|
204
|
+
"stability": "stable",
|
|
205
|
+
"summary": "Configuration for an AWS AssumeRoleStep."
|
|
206
|
+
},
|
|
207
|
+
"fqn": "projen-pipelines.AwsAssumeRoleStepConfig",
|
|
208
|
+
"kind": "interface",
|
|
209
|
+
"locationInModule": {
|
|
210
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
211
|
+
"line": 9
|
|
212
|
+
},
|
|
213
|
+
"name": "AwsAssumeRoleStepConfig",
|
|
214
|
+
"properties": [
|
|
215
|
+
{
|
|
216
|
+
"abstract": true,
|
|
217
|
+
"docs": {
|
|
218
|
+
"stability": "stable",
|
|
219
|
+
"summary": "The ARN of the role to assume."
|
|
220
|
+
},
|
|
221
|
+
"immutable": true,
|
|
222
|
+
"locationInModule": {
|
|
223
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
224
|
+
"line": 11
|
|
225
|
+
},
|
|
226
|
+
"name": "roleArn",
|
|
227
|
+
"type": {
|
|
228
|
+
"primitive": "string"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"abstract": true,
|
|
233
|
+
"docs": {
|
|
234
|
+
"stability": "stable",
|
|
235
|
+
"summary": "The AWS region that should be set."
|
|
236
|
+
},
|
|
237
|
+
"immutable": true,
|
|
238
|
+
"locationInModule": {
|
|
239
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
240
|
+
"line": 15
|
|
241
|
+
},
|
|
242
|
+
"name": "region",
|
|
243
|
+
"optional": true,
|
|
244
|
+
"type": {
|
|
245
|
+
"primitive": "string"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"abstract": true,
|
|
250
|
+
"docs": {
|
|
251
|
+
"stability": "stable",
|
|
252
|
+
"summary": "An identifier for the assumed role session."
|
|
253
|
+
},
|
|
254
|
+
"immutable": true,
|
|
255
|
+
"locationInModule": {
|
|
256
|
+
"filename": "src/steps/aws-assume-role.step.ts",
|
|
257
|
+
"line": 13
|
|
258
|
+
},
|
|
259
|
+
"name": "sessionName",
|
|
260
|
+
"optional": true,
|
|
261
|
+
"type": {
|
|
262
|
+
"primitive": "string"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"symbolId": "src/steps/aws-assume-role.step:AwsAssumeRoleStepConfig"
|
|
267
|
+
},
|
|
120
268
|
"projen-pipelines.BashCDKPipeline": {
|
|
121
269
|
"assembly": "projen-pipelines",
|
|
122
270
|
"base": "projen-pipelines.CDKPipeline",
|
|
@@ -202,7 +350,7 @@
|
|
|
202
350
|
"kind": "interface",
|
|
203
351
|
"locationInModule": {
|
|
204
352
|
"filename": "src/steps/step.ts",
|
|
205
|
-
"line":
|
|
353
|
+
"line": 44
|
|
206
354
|
},
|
|
207
355
|
"name": "BashStepConfig",
|
|
208
356
|
"properties": [
|
|
@@ -215,7 +363,7 @@
|
|
|
215
363
|
"immutable": true,
|
|
216
364
|
"locationInModule": {
|
|
217
365
|
"filename": "src/steps/step.ts",
|
|
218
|
-
"line":
|
|
366
|
+
"line": 47
|
|
219
367
|
},
|
|
220
368
|
"name": "commands",
|
|
221
369
|
"type": {
|
|
@@ -658,6 +806,20 @@
|
|
|
658
806
|
"type": {
|
|
659
807
|
"fqn": "projen.awscdk.AwsCdkTypeScriptApp"
|
|
660
808
|
}
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"docs": {
|
|
812
|
+
"stability": "stable"
|
|
813
|
+
},
|
|
814
|
+
"locationInModule": {
|
|
815
|
+
"filename": "src/awscdk/base.ts",
|
|
816
|
+
"line": 153
|
|
817
|
+
},
|
|
818
|
+
"name": "baseOptions",
|
|
819
|
+
"protected": true,
|
|
820
|
+
"type": {
|
|
821
|
+
"fqn": "projen-pipelines.CDKPipelineOptions"
|
|
822
|
+
}
|
|
661
823
|
}
|
|
662
824
|
],
|
|
663
825
|
"symbolId": "src/awscdk/base:CDKPipeline"
|
|
@@ -993,6 +1155,132 @@
|
|
|
993
1155
|
],
|
|
994
1156
|
"symbolId": "src/awscdk/base:DeploymentStage"
|
|
995
1157
|
},
|
|
1158
|
+
"projen-pipelines.DownloadArtifactStep": {
|
|
1159
|
+
"assembly": "projen-pipelines",
|
|
1160
|
+
"base": "projen-pipelines.PipelineStep",
|
|
1161
|
+
"docs": {
|
|
1162
|
+
"stability": "stable"
|
|
1163
|
+
},
|
|
1164
|
+
"fqn": "projen-pipelines.DownloadArtifactStep",
|
|
1165
|
+
"initializer": {
|
|
1166
|
+
"docs": {
|
|
1167
|
+
"stability": "stable"
|
|
1168
|
+
},
|
|
1169
|
+
"locationInModule": {
|
|
1170
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
1171
|
+
"line": 11
|
|
1172
|
+
},
|
|
1173
|
+
"parameters": [
|
|
1174
|
+
{
|
|
1175
|
+
"docs": {
|
|
1176
|
+
"summary": "- The projen project reference."
|
|
1177
|
+
},
|
|
1178
|
+
"name": "project",
|
|
1179
|
+
"type": {
|
|
1180
|
+
"fqn": "projen.Project"
|
|
1181
|
+
}
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"name": "config",
|
|
1185
|
+
"type": {
|
|
1186
|
+
"fqn": "projen-pipelines.DownloadArtifactStepConfig"
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
]
|
|
1190
|
+
},
|
|
1191
|
+
"kind": "class",
|
|
1192
|
+
"locationInModule": {
|
|
1193
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
1194
|
+
"line": 9
|
|
1195
|
+
},
|
|
1196
|
+
"methods": [
|
|
1197
|
+
{
|
|
1198
|
+
"docs": {
|
|
1199
|
+
"remarks": "Should be implemented by subclasses.",
|
|
1200
|
+
"stability": "stable",
|
|
1201
|
+
"summary": "Generates a configuration for a GitHub Actions step."
|
|
1202
|
+
},
|
|
1203
|
+
"locationInModule": {
|
|
1204
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
1205
|
+
"line": 24
|
|
1206
|
+
},
|
|
1207
|
+
"name": "toGithub",
|
|
1208
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
1209
|
+
"returns": {
|
|
1210
|
+
"type": {
|
|
1211
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
1212
|
+
}
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"docs": {
|
|
1217
|
+
"remarks": "Should be implemented by subclasses.",
|
|
1218
|
+
"stability": "stable",
|
|
1219
|
+
"summary": "Generates a configuration for a GitLab CI step."
|
|
1220
|
+
},
|
|
1221
|
+
"locationInModule": {
|
|
1222
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
1223
|
+
"line": 15
|
|
1224
|
+
},
|
|
1225
|
+
"name": "toGitlab",
|
|
1226
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
1227
|
+
"returns": {
|
|
1228
|
+
"type": {
|
|
1229
|
+
"fqn": "projen-pipelines.GitlabStepConfig"
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
}
|
|
1233
|
+
],
|
|
1234
|
+
"name": "DownloadArtifactStep",
|
|
1235
|
+
"symbolId": "src/steps/artifact-steps:DownloadArtifactStep"
|
|
1236
|
+
},
|
|
1237
|
+
"projen-pipelines.DownloadArtifactStepConfig": {
|
|
1238
|
+
"assembly": "projen-pipelines",
|
|
1239
|
+
"datatype": true,
|
|
1240
|
+
"docs": {
|
|
1241
|
+
"stability": "stable"
|
|
1242
|
+
},
|
|
1243
|
+
"fqn": "projen-pipelines.DownloadArtifactStepConfig",
|
|
1244
|
+
"kind": "interface",
|
|
1245
|
+
"locationInModule": {
|
|
1246
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
1247
|
+
"line": 4
|
|
1248
|
+
},
|
|
1249
|
+
"name": "DownloadArtifactStepConfig",
|
|
1250
|
+
"properties": [
|
|
1251
|
+
{
|
|
1252
|
+
"abstract": true,
|
|
1253
|
+
"docs": {
|
|
1254
|
+
"stability": "stable"
|
|
1255
|
+
},
|
|
1256
|
+
"immutable": true,
|
|
1257
|
+
"locationInModule": {
|
|
1258
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
1259
|
+
"line": 5
|
|
1260
|
+
},
|
|
1261
|
+
"name": "name",
|
|
1262
|
+
"type": {
|
|
1263
|
+
"primitive": "string"
|
|
1264
|
+
}
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"abstract": true,
|
|
1268
|
+
"docs": {
|
|
1269
|
+
"stability": "stable"
|
|
1270
|
+
},
|
|
1271
|
+
"immutable": true,
|
|
1272
|
+
"locationInModule": {
|
|
1273
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
1274
|
+
"line": 6
|
|
1275
|
+
},
|
|
1276
|
+
"name": "path",
|
|
1277
|
+
"type": {
|
|
1278
|
+
"primitive": "string"
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
],
|
|
1282
|
+
"symbolId": "src/steps/artifact-steps:DownloadArtifactStepConfig"
|
|
1283
|
+
},
|
|
996
1284
|
"projen-pipelines.Environment": {
|
|
997
1285
|
"assembly": "projen-pipelines",
|
|
998
1286
|
"datatype": true,
|
|
@@ -1061,7 +1349,7 @@
|
|
|
1061
1349
|
},
|
|
1062
1350
|
"locationInModule": {
|
|
1063
1351
|
"filename": "src/awscdk/github.ts",
|
|
1064
|
-
"line":
|
|
1352
|
+
"line": 80
|
|
1065
1353
|
},
|
|
1066
1354
|
"parameters": [
|
|
1067
1355
|
{
|
|
@@ -1087,7 +1375,7 @@
|
|
|
1087
1375
|
"kind": "class",
|
|
1088
1376
|
"locationInModule": {
|
|
1089
1377
|
"filename": "src/awscdk/github.ts",
|
|
1090
|
-
"line":
|
|
1378
|
+
"line": 63
|
|
1091
1379
|
},
|
|
1092
1380
|
"methods": [
|
|
1093
1381
|
{
|
|
@@ -1097,7 +1385,7 @@
|
|
|
1097
1385
|
},
|
|
1098
1386
|
"locationInModule": {
|
|
1099
1387
|
"filename": "src/awscdk/github.ts",
|
|
1100
|
-
"line":
|
|
1388
|
+
"line": 179
|
|
1101
1389
|
},
|
|
1102
1390
|
"name": "createAssetUpload"
|
|
1103
1391
|
},
|
|
@@ -1108,7 +1396,7 @@
|
|
|
1108
1396
|
},
|
|
1109
1397
|
"locationInModule": {
|
|
1110
1398
|
"filename": "src/awscdk/github.ts",
|
|
1111
|
-
"line":
|
|
1399
|
+
"line": 246
|
|
1112
1400
|
},
|
|
1113
1401
|
"name": "createDeployment",
|
|
1114
1402
|
"parameters": [
|
|
@@ -1130,7 +1418,7 @@
|
|
|
1130
1418
|
},
|
|
1131
1419
|
"locationInModule": {
|
|
1132
1420
|
"filename": "src/awscdk/github.ts",
|
|
1133
|
-
"line":
|
|
1421
|
+
"line": 353
|
|
1134
1422
|
},
|
|
1135
1423
|
"name": "createIndependentDeployment",
|
|
1136
1424
|
"parameters": [
|
|
@@ -1152,7 +1440,7 @@
|
|
|
1152
1440
|
},
|
|
1153
1441
|
"locationInModule": {
|
|
1154
1442
|
"filename": "src/awscdk/github.ts",
|
|
1155
|
-
"line":
|
|
1443
|
+
"line": 124
|
|
1156
1444
|
},
|
|
1157
1445
|
"name": "engineType",
|
|
1158
1446
|
"overrides": "projen-pipelines.CDKPipeline",
|
|
@@ -1173,7 +1461,7 @@
|
|
|
1173
1461
|
"immutable": true,
|
|
1174
1462
|
"locationInModule": {
|
|
1175
1463
|
"filename": "src/awscdk/github.ts",
|
|
1176
|
-
"line":
|
|
1464
|
+
"line": 66
|
|
1177
1465
|
},
|
|
1178
1466
|
"name": "needsVersionedArtifacts",
|
|
1179
1467
|
"type": {
|
|
@@ -1186,7 +1474,7 @@
|
|
|
1186
1474
|
},
|
|
1187
1475
|
"locationInModule": {
|
|
1188
1476
|
"filename": "src/awscdk/github.ts",
|
|
1189
|
-
"line":
|
|
1477
|
+
"line": 73
|
|
1190
1478
|
},
|
|
1191
1479
|
"name": "useGithubPackages",
|
|
1192
1480
|
"protected": true,
|
|
@@ -1211,7 +1499,7 @@
|
|
|
1211
1499
|
"kind": "interface",
|
|
1212
1500
|
"locationInModule": {
|
|
1213
1501
|
"filename": "src/awscdk/github.ts",
|
|
1214
|
-
"line":
|
|
1502
|
+
"line": 34
|
|
1215
1503
|
},
|
|
1216
1504
|
"name": "GithubCDKPipelineOptions",
|
|
1217
1505
|
"properties": [
|
|
@@ -1224,7 +1512,7 @@
|
|
|
1224
1512
|
"immutable": true,
|
|
1225
1513
|
"locationInModule": {
|
|
1226
1514
|
"filename": "src/awscdk/github.ts",
|
|
1227
|
-
"line":
|
|
1515
|
+
"line": 37
|
|
1228
1516
|
},
|
|
1229
1517
|
"name": "iamRoleArns",
|
|
1230
1518
|
"type": {
|
|
@@ -1241,7 +1529,7 @@
|
|
|
1241
1529
|
"immutable": true,
|
|
1242
1530
|
"locationInModule": {
|
|
1243
1531
|
"filename": "src/awscdk/github.ts",
|
|
1244
|
-
"line":
|
|
1532
|
+
"line": 44
|
|
1245
1533
|
},
|
|
1246
1534
|
"name": "runnerTags",
|
|
1247
1535
|
"optional": true,
|
|
@@ -1254,6 +1542,25 @@
|
|
|
1254
1542
|
}
|
|
1255
1543
|
}
|
|
1256
1544
|
},
|
|
1545
|
+
{
|
|
1546
|
+
"abstract": true,
|
|
1547
|
+
"docs": {
|
|
1548
|
+
"default": "false",
|
|
1549
|
+
"remarks": "INFO: When using environments consider protection rules instead of using the manual option of projen-pipelines for stages",
|
|
1550
|
+
"stability": "stable",
|
|
1551
|
+
"summary": "whether to use GitHub environments for deployment stages."
|
|
1552
|
+
},
|
|
1553
|
+
"immutable": true,
|
|
1554
|
+
"locationInModule": {
|
|
1555
|
+
"filename": "src/awscdk/github.ts",
|
|
1556
|
+
"line": 56
|
|
1557
|
+
},
|
|
1558
|
+
"name": "useGithubEnvironments",
|
|
1559
|
+
"optional": true,
|
|
1560
|
+
"type": {
|
|
1561
|
+
"primitive": "boolean"
|
|
1562
|
+
}
|
|
1563
|
+
},
|
|
1257
1564
|
{
|
|
1258
1565
|
"abstract": true,
|
|
1259
1566
|
"docs": {
|
|
@@ -1264,7 +1571,7 @@
|
|
|
1264
1571
|
"immutable": true,
|
|
1265
1572
|
"locationInModule": {
|
|
1266
1573
|
"filename": "src/awscdk/github.ts",
|
|
1267
|
-
"line":
|
|
1574
|
+
"line": 47
|
|
1268
1575
|
},
|
|
1269
1576
|
"name": "useGithubPackagesForAssembly",
|
|
1270
1577
|
"optional": true,
|
|
@@ -1286,7 +1593,7 @@
|
|
|
1286
1593
|
"kind": "interface",
|
|
1287
1594
|
"locationInModule": {
|
|
1288
1595
|
"filename": "src/awscdk/github.ts",
|
|
1289
|
-
"line":
|
|
1596
|
+
"line": 17
|
|
1290
1597
|
},
|
|
1291
1598
|
"name": "GithubIamRoleConfig",
|
|
1292
1599
|
"properties": [
|
|
@@ -1299,7 +1606,7 @@
|
|
|
1299
1606
|
"immutable": true,
|
|
1300
1607
|
"locationInModule": {
|
|
1301
1608
|
"filename": "src/awscdk/github.ts",
|
|
1302
|
-
"line":
|
|
1609
|
+
"line": 24
|
|
1303
1610
|
},
|
|
1304
1611
|
"name": "assetPublishing",
|
|
1305
1612
|
"optional": true,
|
|
@@ -1316,7 +1623,7 @@
|
|
|
1316
1623
|
"immutable": true,
|
|
1317
1624
|
"locationInModule": {
|
|
1318
1625
|
"filename": "src/awscdk/github.ts",
|
|
1319
|
-
"line":
|
|
1626
|
+
"line": 26
|
|
1320
1627
|
},
|
|
1321
1628
|
"name": "assetPublishingPerStage",
|
|
1322
1629
|
"optional": true,
|
|
@@ -1338,7 +1645,7 @@
|
|
|
1338
1645
|
"immutable": true,
|
|
1339
1646
|
"locationInModule": {
|
|
1340
1647
|
"filename": "src/awscdk/github.ts",
|
|
1341
|
-
"line":
|
|
1648
|
+
"line": 20
|
|
1342
1649
|
},
|
|
1343
1650
|
"name": "default",
|
|
1344
1651
|
"optional": true,
|
|
@@ -1355,7 +1662,7 @@
|
|
|
1355
1662
|
"immutable": true,
|
|
1356
1663
|
"locationInModule": {
|
|
1357
1664
|
"filename": "src/awscdk/github.ts",
|
|
1358
|
-
"line":
|
|
1665
|
+
"line": 28
|
|
1359
1666
|
},
|
|
1360
1667
|
"name": "deployment",
|
|
1361
1668
|
"optional": true,
|
|
@@ -1377,7 +1684,7 @@
|
|
|
1377
1684
|
"immutable": true,
|
|
1378
1685
|
"locationInModule": {
|
|
1379
1686
|
"filename": "src/awscdk/github.ts",
|
|
1380
|
-
"line":
|
|
1687
|
+
"line": 22
|
|
1381
1688
|
},
|
|
1382
1689
|
"name": "synth",
|
|
1383
1690
|
"optional": true,
|
|
@@ -1388,6 +1695,102 @@
|
|
|
1388
1695
|
],
|
|
1389
1696
|
"symbolId": "src/awscdk/github:GithubIamRoleConfig"
|
|
1390
1697
|
},
|
|
1698
|
+
"projen-pipelines.GithubPackagesLoginStep": {
|
|
1699
|
+
"assembly": "projen-pipelines",
|
|
1700
|
+
"base": "projen-pipelines.PipelineStep",
|
|
1701
|
+
"docs": {
|
|
1702
|
+
"stability": "stable"
|
|
1703
|
+
},
|
|
1704
|
+
"fqn": "projen-pipelines.GithubPackagesLoginStep",
|
|
1705
|
+
"initializer": {
|
|
1706
|
+
"docs": {
|
|
1707
|
+
"stability": "stable"
|
|
1708
|
+
},
|
|
1709
|
+
"locationInModule": {
|
|
1710
|
+
"filename": "src/steps/registries.ts",
|
|
1711
|
+
"line": 16
|
|
1712
|
+
},
|
|
1713
|
+
"parameters": [
|
|
1714
|
+
{
|
|
1715
|
+
"docs": {
|
|
1716
|
+
"summary": "- The projen project reference."
|
|
1717
|
+
},
|
|
1718
|
+
"name": "project",
|
|
1719
|
+
"type": {
|
|
1720
|
+
"fqn": "projen.Project"
|
|
1721
|
+
}
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"name": "options",
|
|
1725
|
+
"type": {
|
|
1726
|
+
"fqn": "projen-pipelines.GithubPackagesLoginStepOptions"
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
]
|
|
1730
|
+
},
|
|
1731
|
+
"kind": "class",
|
|
1732
|
+
"locationInModule": {
|
|
1733
|
+
"filename": "src/steps/registries.ts",
|
|
1734
|
+
"line": 14
|
|
1735
|
+
},
|
|
1736
|
+
"methods": [
|
|
1737
|
+
{
|
|
1738
|
+
"docs": {
|
|
1739
|
+
"remarks": "Should be implemented by subclasses.",
|
|
1740
|
+
"stability": "stable",
|
|
1741
|
+
"summary": "Generates a configuration for a GitHub Actions step."
|
|
1742
|
+
},
|
|
1743
|
+
"locationInModule": {
|
|
1744
|
+
"filename": "src/steps/registries.ts",
|
|
1745
|
+
"line": 20
|
|
1746
|
+
},
|
|
1747
|
+
"name": "toGithub",
|
|
1748
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
1749
|
+
"returns": {
|
|
1750
|
+
"type": {
|
|
1751
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
1752
|
+
}
|
|
1753
|
+
}
|
|
1754
|
+
}
|
|
1755
|
+
],
|
|
1756
|
+
"name": "GithubPackagesLoginStep",
|
|
1757
|
+
"symbolId": "src/steps/registries:GithubPackagesLoginStep"
|
|
1758
|
+
},
|
|
1759
|
+
"projen-pipelines.GithubPackagesLoginStepOptions": {
|
|
1760
|
+
"assembly": "projen-pipelines",
|
|
1761
|
+
"datatype": true,
|
|
1762
|
+
"docs": {
|
|
1763
|
+
"stability": "stable"
|
|
1764
|
+
},
|
|
1765
|
+
"fqn": "projen-pipelines.GithubPackagesLoginStepOptions",
|
|
1766
|
+
"kind": "interface",
|
|
1767
|
+
"locationInModule": {
|
|
1768
|
+
"filename": "src/steps/registries.ts",
|
|
1769
|
+
"line": 5
|
|
1770
|
+
},
|
|
1771
|
+
"name": "GithubPackagesLoginStepOptions",
|
|
1772
|
+
"properties": [
|
|
1773
|
+
{
|
|
1774
|
+
"abstract": true,
|
|
1775
|
+
"docs": {
|
|
1776
|
+
"default": "false",
|
|
1777
|
+
"stability": "stable",
|
|
1778
|
+
"summary": "Whether or not to grant the step write permissions to the registry."
|
|
1779
|
+
},
|
|
1780
|
+
"immutable": true,
|
|
1781
|
+
"locationInModule": {
|
|
1782
|
+
"filename": "src/steps/registries.ts",
|
|
1783
|
+
"line": 11
|
|
1784
|
+
},
|
|
1785
|
+
"name": "write",
|
|
1786
|
+
"optional": true,
|
|
1787
|
+
"type": {
|
|
1788
|
+
"primitive": "boolean"
|
|
1789
|
+
}
|
|
1790
|
+
}
|
|
1791
|
+
],
|
|
1792
|
+
"symbolId": "src/steps/registries:GithubPackagesLoginStepOptions"
|
|
1793
|
+
},
|
|
1391
1794
|
"projen-pipelines.GithubStepConfig": {
|
|
1392
1795
|
"assembly": "projen-pipelines",
|
|
1393
1796
|
"datatype": true,
|
|
@@ -1465,6 +1868,23 @@
|
|
|
1465
1868
|
"kind": "array"
|
|
1466
1869
|
}
|
|
1467
1870
|
}
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"abstract": true,
|
|
1874
|
+
"docs": {
|
|
1875
|
+
"stability": "stable",
|
|
1876
|
+
"summary": "Additional job permissions needed."
|
|
1877
|
+
},
|
|
1878
|
+
"immutable": true,
|
|
1879
|
+
"locationInModule": {
|
|
1880
|
+
"filename": "src/steps/step.ts",
|
|
1881
|
+
"line": 38
|
|
1882
|
+
},
|
|
1883
|
+
"name": "permissions",
|
|
1884
|
+
"optional": true,
|
|
1885
|
+
"type": {
|
|
1886
|
+
"fqn": "projen.github.workflows.JobPermissions"
|
|
1887
|
+
}
|
|
1468
1888
|
}
|
|
1469
1889
|
],
|
|
1470
1890
|
"symbolId": "src/steps/step:GithubStepConfig"
|
|
@@ -2303,7 +2723,7 @@
|
|
|
2303
2723
|
},
|
|
2304
2724
|
"locationInModule": {
|
|
2305
2725
|
"filename": "src/steps/step.ts",
|
|
2306
|
-
"line":
|
|
2726
|
+
"line": 59
|
|
2307
2727
|
},
|
|
2308
2728
|
"parameters": [
|
|
2309
2729
|
{
|
|
@@ -2320,7 +2740,7 @@
|
|
|
2320
2740
|
"kind": "class",
|
|
2321
2741
|
"locationInModule": {
|
|
2322
2742
|
"filename": "src/steps/step.ts",
|
|
2323
|
-
"line":
|
|
2743
|
+
"line": 53
|
|
2324
2744
|
},
|
|
2325
2745
|
"methods": [
|
|
2326
2746
|
{
|
|
@@ -2331,7 +2751,7 @@
|
|
|
2331
2751
|
},
|
|
2332
2752
|
"locationInModule": {
|
|
2333
2753
|
"filename": "src/steps/step.ts",
|
|
2334
|
-
"line":
|
|
2754
|
+
"line": 80
|
|
2335
2755
|
},
|
|
2336
2756
|
"name": "toBash",
|
|
2337
2757
|
"returns": {
|
|
@@ -2348,7 +2768,7 @@
|
|
|
2348
2768
|
},
|
|
2349
2769
|
"locationInModule": {
|
|
2350
2770
|
"filename": "src/steps/step.ts",
|
|
2351
|
-
"line":
|
|
2771
|
+
"line": 73
|
|
2352
2772
|
},
|
|
2353
2773
|
"name": "toGithub",
|
|
2354
2774
|
"returns": {
|
|
@@ -2365,7 +2785,7 @@
|
|
|
2365
2785
|
},
|
|
2366
2786
|
"locationInModule": {
|
|
2367
2787
|
"filename": "src/steps/step.ts",
|
|
2368
|
-
"line":
|
|
2788
|
+
"line": 66
|
|
2369
2789
|
},
|
|
2370
2790
|
"name": "toGitlab",
|
|
2371
2791
|
"returns": {
|
|
@@ -2384,7 +2804,7 @@
|
|
|
2384
2804
|
},
|
|
2385
2805
|
"locationInModule": {
|
|
2386
2806
|
"filename": "src/steps/step.ts",
|
|
2387
|
-
"line":
|
|
2807
|
+
"line": 59
|
|
2388
2808
|
},
|
|
2389
2809
|
"name": "project",
|
|
2390
2810
|
"protected": true,
|
|
@@ -2410,7 +2830,7 @@
|
|
|
2410
2830
|
},
|
|
2411
2831
|
"locationInModule": {
|
|
2412
2832
|
"filename": "src/steps/step.ts",
|
|
2413
|
-
"line":
|
|
2833
|
+
"line": 95
|
|
2414
2834
|
},
|
|
2415
2835
|
"parameters": [
|
|
2416
2836
|
{
|
|
@@ -2441,7 +2861,7 @@
|
|
|
2441
2861
|
"kind": "class",
|
|
2442
2862
|
"locationInModule": {
|
|
2443
2863
|
"filename": "src/steps/step.ts",
|
|
2444
|
-
"line":
|
|
2864
|
+
"line": 88
|
|
2445
2865
|
},
|
|
2446
2866
|
"methods": [
|
|
2447
2867
|
{
|
|
@@ -2451,7 +2871,7 @@
|
|
|
2451
2871
|
},
|
|
2452
2872
|
"locationInModule": {
|
|
2453
2873
|
"filename": "src/steps/step.ts",
|
|
2454
|
-
"line":
|
|
2874
|
+
"line": 114
|
|
2455
2875
|
},
|
|
2456
2876
|
"name": "toBash",
|
|
2457
2877
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -2468,7 +2888,7 @@
|
|
|
2468
2888
|
},
|
|
2469
2889
|
"locationInModule": {
|
|
2470
2890
|
"filename": "src/steps/step.ts",
|
|
2471
|
-
"line":
|
|
2891
|
+
"line": 123
|
|
2472
2892
|
},
|
|
2473
2893
|
"name": "toGithub",
|
|
2474
2894
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -2485,7 +2905,7 @@
|
|
|
2485
2905
|
},
|
|
2486
2906
|
"locationInModule": {
|
|
2487
2907
|
"filename": "src/steps/step.ts",
|
|
2488
|
-
"line":
|
|
2908
|
+
"line": 102
|
|
2489
2909
|
},
|
|
2490
2910
|
"name": "toGitlab",
|
|
2491
2911
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -2505,7 +2925,7 @@
|
|
|
2505
2925
|
},
|
|
2506
2926
|
"locationInModule": {
|
|
2507
2927
|
"filename": "src/steps/step.ts",
|
|
2508
|
-
"line":
|
|
2928
|
+
"line": 95
|
|
2509
2929
|
},
|
|
2510
2930
|
"name": "commands",
|
|
2511
2931
|
"protected": true,
|
|
@@ -2553,8 +2973,116 @@
|
|
|
2553
2973
|
}
|
|
2554
2974
|
],
|
|
2555
2975
|
"symbolId": "src/awscdk/base:StageOptions"
|
|
2976
|
+
},
|
|
2977
|
+
"projen-pipelines.UploadArtifactStep": {
|
|
2978
|
+
"assembly": "projen-pipelines",
|
|
2979
|
+
"base": "projen-pipelines.PipelineStep",
|
|
2980
|
+
"docs": {
|
|
2981
|
+
"stability": "stable"
|
|
2982
|
+
},
|
|
2983
|
+
"fqn": "projen-pipelines.UploadArtifactStep",
|
|
2984
|
+
"initializer": {
|
|
2985
|
+
"docs": {
|
|
2986
|
+
"stability": "stable"
|
|
2987
|
+
},
|
|
2988
|
+
"locationInModule": {
|
|
2989
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
2990
|
+
"line": 48
|
|
2991
|
+
},
|
|
2992
|
+
"parameters": [
|
|
2993
|
+
{
|
|
2994
|
+
"docs": {
|
|
2995
|
+
"summary": "- The projen project reference."
|
|
2996
|
+
},
|
|
2997
|
+
"name": "project",
|
|
2998
|
+
"type": {
|
|
2999
|
+
"fqn": "projen.Project"
|
|
3000
|
+
}
|
|
3001
|
+
},
|
|
3002
|
+
{
|
|
3003
|
+
"name": "config",
|
|
3004
|
+
"type": {
|
|
3005
|
+
"fqn": "projen-pipelines.UploadArtifactStepConfig"
|
|
3006
|
+
}
|
|
3007
|
+
}
|
|
3008
|
+
]
|
|
3009
|
+
},
|
|
3010
|
+
"kind": "class",
|
|
3011
|
+
"locationInModule": {
|
|
3012
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
3013
|
+
"line": 46
|
|
3014
|
+
},
|
|
3015
|
+
"methods": [
|
|
3016
|
+
{
|
|
3017
|
+
"docs": {
|
|
3018
|
+
"remarks": "Should be implemented by subclasses.",
|
|
3019
|
+
"stability": "stable",
|
|
3020
|
+
"summary": "Generates a configuration for a GitHub Actions step."
|
|
3021
|
+
},
|
|
3022
|
+
"locationInModule": {
|
|
3023
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
3024
|
+
"line": 52
|
|
3025
|
+
},
|
|
3026
|
+
"name": "toGithub",
|
|
3027
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
3028
|
+
"returns": {
|
|
3029
|
+
"type": {
|
|
3030
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
3031
|
+
}
|
|
3032
|
+
}
|
|
3033
|
+
}
|
|
3034
|
+
],
|
|
3035
|
+
"name": "UploadArtifactStep",
|
|
3036
|
+
"symbolId": "src/steps/artifact-steps:UploadArtifactStep"
|
|
3037
|
+
},
|
|
3038
|
+
"projen-pipelines.UploadArtifactStepConfig": {
|
|
3039
|
+
"assembly": "projen-pipelines",
|
|
3040
|
+
"datatype": true,
|
|
3041
|
+
"docs": {
|
|
3042
|
+
"stability": "stable"
|
|
3043
|
+
},
|
|
3044
|
+
"fqn": "projen-pipelines.UploadArtifactStepConfig",
|
|
3045
|
+
"kind": "interface",
|
|
3046
|
+
"locationInModule": {
|
|
3047
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
3048
|
+
"line": 41
|
|
3049
|
+
},
|
|
3050
|
+
"name": "UploadArtifactStepConfig",
|
|
3051
|
+
"properties": [
|
|
3052
|
+
{
|
|
3053
|
+
"abstract": true,
|
|
3054
|
+
"docs": {
|
|
3055
|
+
"stability": "stable"
|
|
3056
|
+
},
|
|
3057
|
+
"immutable": true,
|
|
3058
|
+
"locationInModule": {
|
|
3059
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
3060
|
+
"line": 42
|
|
3061
|
+
},
|
|
3062
|
+
"name": "name",
|
|
3063
|
+
"type": {
|
|
3064
|
+
"primitive": "string"
|
|
3065
|
+
}
|
|
3066
|
+
},
|
|
3067
|
+
{
|
|
3068
|
+
"abstract": true,
|
|
3069
|
+
"docs": {
|
|
3070
|
+
"stability": "stable"
|
|
3071
|
+
},
|
|
3072
|
+
"immutable": true,
|
|
3073
|
+
"locationInModule": {
|
|
3074
|
+
"filename": "src/steps/artifact-steps.ts",
|
|
3075
|
+
"line": 43
|
|
3076
|
+
},
|
|
3077
|
+
"name": "path",
|
|
3078
|
+
"type": {
|
|
3079
|
+
"primitive": "string"
|
|
3080
|
+
}
|
|
3081
|
+
}
|
|
3082
|
+
],
|
|
3083
|
+
"symbolId": "src/steps/artifact-steps:UploadArtifactStepConfig"
|
|
2556
3084
|
}
|
|
2557
3085
|
},
|
|
2558
|
-
"version": "0.0.
|
|
2559
|
-
"fingerprint": "
|
|
3086
|
+
"version": "0.0.72",
|
|
3087
|
+
"fingerprint": "DebPJMHhl0VWStP4eMZ7cJheiPsoLCCgpMX6BFAoTh0="
|
|
2560
3088
|
}
|