Skip to content

Commit 69bf757

Browse files
updates
1 parent 213886e commit 69bf757

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
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_tag31"
22-
release_name: "broyden_release31"
21+
tag_name: "broyden_tag32"
22+
release_name: "broyden_release32"
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.31",
3+
"version": "0.2.32",
44
"description": "",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

src/aws/services/route53.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ export class Route53 {
1414
console.log("**LIST HOSTED ZONES**");
1515
const response = await this._client.send(command);
1616
const obj = response.HostedZones?.filter((obj) => obj.Name === `${hostedZoneName}.`);
17+
console.log(';'.repeat(100));
18+
console.log(JSON.stringify(obj, undefined, 4));
19+
console.log(';'.repeat(100));
1720
if (obj?.length == 1 && obj[0].Id) {
1821
hostedZoneId = obj[0].Id.split("/")[2];
1922
//console.log(id);

0 commit comments

Comments
 (0)