File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 18
18
env :
19
19
GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
20
20
with :
21
- tag_name : " broyden_tag29 "
22
- release_name : " broyden_release29 "
21
+ tag_name : " broyden_tag30 "
22
+ release_name : " broyden_release30 "
23
23
draft : false
24
24
prerelease : false
25
25
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " example-typescript-package" ,
3
- "version" : " 0.2.29 " ,
3
+ "version" : " 0.2.30 " ,
4
4
"description" : " " ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"module" : " dist/esm/index.js" ,
Original file line number Diff line number Diff line change 1
- import { ApiType } from '@kubernetes/client-node' ;
1
+ import { CoreV1Api } from '@kubernetes/client-node' ;
2
2
import { LoadBalancer } from './services/load_balancer' ;
3
3
4
4
export class Services {
5
5
readonly LoadBalancer : LoadBalancer ;
6
- constructor ( apiType : ApiType ) {
7
- this . LoadBalancer = new LoadBalancer ( apiType ) ;
6
+ constructor ( api : CoreV1Api ) {
7
+ this . LoadBalancer = new LoadBalancer ( api ) ;
8
8
}
9
9
}
You can’t perform that action at this time.
0 commit comments