projen-pipelines 0.0.71 → 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 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": 41
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": 44
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": 78
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": 61
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": 180
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": 247
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": 360
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": 122
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": 64
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": 71
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": 32
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": 35
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": 42
1532
+ "line": 44
1245
1533
  },
1246
1534
  "name": "runnerTags",
1247
1535
  "optional": true,
@@ -1265,7 +1553,7 @@
1265
1553
  "immutable": true,
1266
1554
  "locationInModule": {
1267
1555
  "filename": "src/awscdk/github.ts",
1268
- "line": 54
1556
+ "line": 56
1269
1557
  },
1270
1558
  "name": "useGithubEnvironments",
1271
1559
  "optional": true,
@@ -1283,7 +1571,7 @@
1283
1571
  "immutable": true,
1284
1572
  "locationInModule": {
1285
1573
  "filename": "src/awscdk/github.ts",
1286
- "line": 45
1574
+ "line": 47
1287
1575
  },
1288
1576
  "name": "useGithubPackagesForAssembly",
1289
1577
  "optional": true,
@@ -1305,7 +1593,7 @@
1305
1593
  "kind": "interface",
1306
1594
  "locationInModule": {
1307
1595
  "filename": "src/awscdk/github.ts",
1308
- "line": 15
1596
+ "line": 17
1309
1597
  },
1310
1598
  "name": "GithubIamRoleConfig",
1311
1599
  "properties": [
@@ -1318,7 +1606,7 @@
1318
1606
  "immutable": true,
1319
1607
  "locationInModule": {
1320
1608
  "filename": "src/awscdk/github.ts",
1321
- "line": 22
1609
+ "line": 24
1322
1610
  },
1323
1611
  "name": "assetPublishing",
1324
1612
  "optional": true,
@@ -1335,7 +1623,7 @@
1335
1623
  "immutable": true,
1336
1624
  "locationInModule": {
1337
1625
  "filename": "src/awscdk/github.ts",
1338
- "line": 24
1626
+ "line": 26
1339
1627
  },
1340
1628
  "name": "assetPublishingPerStage",
1341
1629
  "optional": true,
@@ -1357,7 +1645,7 @@
1357
1645
  "immutable": true,
1358
1646
  "locationInModule": {
1359
1647
  "filename": "src/awscdk/github.ts",
1360
- "line": 18
1648
+ "line": 20
1361
1649
  },
1362
1650
  "name": "default",
1363
1651
  "optional": true,
@@ -1374,7 +1662,7 @@
1374
1662
  "immutable": true,
1375
1663
  "locationInModule": {
1376
1664
  "filename": "src/awscdk/github.ts",
1377
- "line": 26
1665
+ "line": 28
1378
1666
  },
1379
1667
  "name": "deployment",
1380
1668
  "optional": true,
@@ -1396,7 +1684,7 @@
1396
1684
  "immutable": true,
1397
1685
  "locationInModule": {
1398
1686
  "filename": "src/awscdk/github.ts",
1399
- "line": 20
1687
+ "line": 22
1400
1688
  },
1401
1689
  "name": "synth",
1402
1690
  "optional": true,
@@ -1407,6 +1695,102 @@
1407
1695
  ],
1408
1696
  "symbolId": "src/awscdk/github:GithubIamRoleConfig"
1409
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
+ },
1410
1794
  "projen-pipelines.GithubStepConfig": {
1411
1795
  "assembly": "projen-pipelines",
1412
1796
  "datatype": true,
@@ -1484,6 +1868,23 @@
1484
1868
  "kind": "array"
1485
1869
  }
1486
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
+ }
1487
1888
  }
1488
1889
  ],
1489
1890
  "symbolId": "src/steps/step:GithubStepConfig"
@@ -2322,7 +2723,7 @@
2322
2723
  },
2323
2724
  "locationInModule": {
2324
2725
  "filename": "src/steps/step.ts",
2325
- "line": 56
2726
+ "line": 59
2326
2727
  },
2327
2728
  "parameters": [
2328
2729
  {
@@ -2339,7 +2740,7 @@
2339
2740
  "kind": "class",
2340
2741
  "locationInModule": {
2341
2742
  "filename": "src/steps/step.ts",
2342
- "line": 50
2743
+ "line": 53
2343
2744
  },
2344
2745
  "methods": [
2345
2746
  {
@@ -2350,7 +2751,7 @@
2350
2751
  },
2351
2752
  "locationInModule": {
2352
2753
  "filename": "src/steps/step.ts",
2353
- "line": 77
2754
+ "line": 80
2354
2755
  },
2355
2756
  "name": "toBash",
2356
2757
  "returns": {
@@ -2367,7 +2768,7 @@
2367
2768
  },
2368
2769
  "locationInModule": {
2369
2770
  "filename": "src/steps/step.ts",
2370
- "line": 70
2771
+ "line": 73
2371
2772
  },
2372
2773
  "name": "toGithub",
2373
2774
  "returns": {
@@ -2384,7 +2785,7 @@
2384
2785
  },
2385
2786
  "locationInModule": {
2386
2787
  "filename": "src/steps/step.ts",
2387
- "line": 63
2788
+ "line": 66
2388
2789
  },
2389
2790
  "name": "toGitlab",
2390
2791
  "returns": {
@@ -2403,7 +2804,7 @@
2403
2804
  },
2404
2805
  "locationInModule": {
2405
2806
  "filename": "src/steps/step.ts",
2406
- "line": 56
2807
+ "line": 59
2407
2808
  },
2408
2809
  "name": "project",
2409
2810
  "protected": true,
@@ -2429,7 +2830,7 @@
2429
2830
  },
2430
2831
  "locationInModule": {
2431
2832
  "filename": "src/steps/step.ts",
2432
- "line": 92
2833
+ "line": 95
2433
2834
  },
2434
2835
  "parameters": [
2435
2836
  {
@@ -2460,7 +2861,7 @@
2460
2861
  "kind": "class",
2461
2862
  "locationInModule": {
2462
2863
  "filename": "src/steps/step.ts",
2463
- "line": 85
2864
+ "line": 88
2464
2865
  },
2465
2866
  "methods": [
2466
2867
  {
@@ -2470,7 +2871,7 @@
2470
2871
  },
2471
2872
  "locationInModule": {
2472
2873
  "filename": "src/steps/step.ts",
2473
- "line": 111
2874
+ "line": 114
2474
2875
  },
2475
2876
  "name": "toBash",
2476
2877
  "overrides": "projen-pipelines.PipelineStep",
@@ -2487,7 +2888,7 @@
2487
2888
  },
2488
2889
  "locationInModule": {
2489
2890
  "filename": "src/steps/step.ts",
2490
- "line": 120
2891
+ "line": 123
2491
2892
  },
2492
2893
  "name": "toGithub",
2493
2894
  "overrides": "projen-pipelines.PipelineStep",
@@ -2504,7 +2905,7 @@
2504
2905
  },
2505
2906
  "locationInModule": {
2506
2907
  "filename": "src/steps/step.ts",
2507
- "line": 99
2908
+ "line": 102
2508
2909
  },
2509
2910
  "name": "toGitlab",
2510
2911
  "overrides": "projen-pipelines.PipelineStep",
@@ -2524,7 +2925,7 @@
2524
2925
  },
2525
2926
  "locationInModule": {
2526
2927
  "filename": "src/steps/step.ts",
2527
- "line": 92
2928
+ "line": 95
2528
2929
  },
2529
2930
  "name": "commands",
2530
2931
  "protected": true,
@@ -2572,8 +2973,116 @@
2572
2973
  }
2573
2974
  ],
2574
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"
2575
3084
  }
2576
3085
  },
2577
- "version": "0.0.71",
2578
- "fingerprint": "wOKcj00vMyiyEAOvouy3+3GK12AbF6C4h+mVreQmyVY="
3086
+ "version": "0.0.72",
3087
+ "fingerprint": "DebPJMHhl0VWStP4eMZ7cJheiPsoLCCgpMX6BFAoTh0="
2579
3088
  }