forked from aripalo/aws-cdk-github-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
44 lines (36 loc) · 1.22 KB
/
.projenrc.js
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
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Ari Palo',
authorAddress: '[email protected]',
cdkVersion: '2.12.0',
/**
* we default release the main branch(cdkv2) with major version 2.
*/
majorVersion: 2,
defaultReleaseBranch: 'main',
/**
* we also release the cdkv1 branch with major version 1.
*/
releaseBranches: {
cdkv1: { npmDistTag: 'cdkv1', majorVersion: 1 },
},
stability: 'experimental',
name: 'aws-cdk-github-oidc',
description: 'CDK constructs to use OpenID Connect for authenticating your Github Action workflow with AWS IAM',
repositoryUrl: 'https://github.com/aripalo/aws-cdk-github-oidc.git',
keywords: ['cdk', 'aws-cdk', 'awscdk', 'aws', 'iam', 'github', 'github-actions', 'oidc', 'openid-connect'],
devDeps: ['@types/github-username-regex', 'constructs'],
// release: undefined, /* Add release management to this project. */
gitignore: ['.DS_Store'],
tsconfig: {
compilerOptions: {
esModuleInterop: true, // required for github-username-regex
},
},
publishToPypi: {
distName: 'aws-cdk-github-oidc',
module: 'aws_cdk_github_oidc',
},
codeCov: true,
});
project.synth();