File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
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_tag32 "
22
- release_name : " broyden_release32 "
21
+ tag_name : " broyden_tag33 "
22
+ release_name : " broyden_release33 "
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.32 " ,
3
+ "version" : " 0.2.33 " ,
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 @@ -11,9 +11,12 @@ export class Route53 {
11
11
12
12
const command = new ListHostedZonesCommand ( { } ) ;
13
13
14
- console . log ( "**LIST HOSTED ZONES **" ) ;
14
+ console . log ( "**LIST HOSTED ZONES1 **" ) ;
15
15
const response = await this . _client . send ( command ) ;
16
+ console . log ( "**LIST HOSTED ZONES2**" ) ;
17
+ console . log ( JSON . stringify ( response , undefined , 4 ) ) ;
16
18
const obj = response . HostedZones ?. filter ( ( obj ) => obj . Name === `${ hostedZoneName } .` ) ;
19
+ console . log ( "**LIST HOSTED ZONES3**" ) ;
17
20
console . log ( ';' . repeat ( 100 ) ) ;
18
21
console . log ( JSON . stringify ( obj , undefined , 4 ) ) ;
19
22
console . log ( ';' . repeat ( 100 ) ) ;
You can’t perform that action at this time.
0 commit comments