Skip to content

Commit 269582d

Browse files
updates
1 parent 69bf757 commit 269582d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
2020
with:
21-
tag_name: "broyden_tag32"
22-
release_name: "broyden_release32"
21+
tag_name: "broyden_tag33"
22+
release_name: "broyden_release33"
2323
draft: false
2424
prerelease: false
2525

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-typescript-package",
3-
"version": "0.2.32",
3+
"version": "0.2.33",
44
"description": "",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

src/aws/services/route53.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ export class Route53 {
1111

1212
const command = new ListHostedZonesCommand({});
1313

14-
console.log("**LIST HOSTED ZONES**");
14+
console.log("**LIST HOSTED ZONES1**");
1515
const response = await this._client.send(command);
16+
console.log("**LIST HOSTED ZONES2**");
17+
console.log(JSON.stringify(response, undefined, 4));
1618
const obj = response.HostedZones?.filter((obj) => obj.Name === `${hostedZoneName}.`);
19+
console.log("**LIST HOSTED ZONES3**");
1720
console.log(';'.repeat(100));
1821
console.log(JSON.stringify(obj, undefined, 4));
1922
console.log(';'.repeat(100));

0 commit comments

Comments
 (0)