Skip to content

Commit 8b08f0d

Browse files
committed
chore: Print the package file name
Signed-off-by: Roger Barker <roger.barker@swirldslabs.com>
1 parent b3c2b1b commit 8b08f0d

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

.github/workflows/publish_release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -458,12 +458,12 @@ jobs:
458458
HG_SDK_PKG_NAME="${{ env.HASHGRAPH_SDK_PKG_NAME }}-${{ needs.validate-release.outputs.sdk-version }}.tgz"
459459
460460
echo "::group::Expected Package Names"
461-
echo "hl-proto-pkg-name=${HL_PROTO_PKG_NAME//#@/}" | tee -a "${GITHUB_OUTPUT}"
462-
echo "hl-crypto-pkg-name=${HL_CRYPTO_PKG_NAME//#@/}" | tee -a "${GITHUB_OUTPUT}"
463-
echo "hl-sdk-pkg-name=${HL_SDK_PKG_NAME//#@/}" | tee -a "${GITHUB_OUTPUT}"
464-
echo "hg-proto-pkg-name=${HG_PROTO_PKG_NAME//#@/}" | tee -a "${GITHUB_OUTPUT}"
465-
echo "hg-crypto-pkg-name=${HG_CRYPTO_PKG_NAME//#@/}" | tee -a "${GITHUB_OUTPUT}"
466-
echo "hg-sdk-pkg-name=${HG_SDK_PKG_NAME//#@/}" | tee -a "${GITHUB_OUTPUT}"
461+
echo "hl-proto-pkg-name=${HL_PROTO_PKG_NAME/#@/}" | tee -a "${GITHUB_OUTPUT}"
462+
echo "hl-crypto-pkg-name=${HL_CRYPTO_PKG_NAME/#@/}" | tee -a "${GITHUB_OUTPUT}"
463+
echo "hl-sdk-pkg-name=${HL_SDK_PKG_NAME/#@/}" | tee -a "${GITHUB_OUTPUT}"
464+
echo "hg-proto-pkg-name=${HG_PROTO_PKG_NAME/#@/}" | tee -a "${GITHUB_OUTPUT}"
465+
echo "hg-crypto-pkg-name=${HG_CRYPTO_PKG_NAME/#@/}" | tee -a "${GITHUB_OUTPUT}"
466+
echo "hg-sdk-pkg-name=${HG_SDK_PKG_NAME/#@/}" | tee -a "${GITHUB_OUTPUT}"
467467
echo "::endgroup::"
468468
469469
- name: Build Proto Release Package (${{ env.HIERO_PROTO_PKG_NAME }})

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
# 2.79.0-beta.5
8+
# 2.79.0-beta.6
99

1010
### Added
1111

Taskfile.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ tasks:
200200
cmds:
201201
- task: "yalc:remove"
202202
- pnpm pack --out {{.PACKAGE_NAME}}
203+
- ls -lh {{.PACKAGE_NAME}}
203204

204205
"publish":
205206
cmds:

common_js_test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"author": "",
1010
"license": "ISC",
1111
"dependencies": {
12-
"@hiero-ledger/sdk": "2.79.0-beta.5",
12+
"@hiero-ledger/sdk": "2.79.0-beta.6",
1313
"chai": "4.3.6",
1414
"mocha": "10.6.0"
1515
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hiero-ledger/sdk",
3-
"version": "2.79.0-beta.5",
3+
"version": "2.79.0-beta.6",
44
"description": "Hiero SDK",
55
"types": "./lib/index.d.ts",
66
"main": "./lib/index.cjs",

packages/cryptography/Taskfile.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ tasks:
9797
- "build"
9898
cmds:
9999
- pnpm pack --out {{.PACKAGE_NAME}}
100+
- ls -lh {{.PACKAGE_NAME}}
100101

101102
publish:
102103
cmds:

packages/proto/Taskfile.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ tasks:
146146
- "test:release"
147147
cmds:
148148
- pnpm pack --out {{.PACKAGE_NAME}}
149+
- ls -lh {{.PACKAGE_NAME}}
149150

150151
publish:
151152
cmds:

tck/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"author": "",
1212
"license": "ISC",
1313
"dependencies": {
14-
"@hiero-ledger/sdk": "2.79.0-beta.5",
14+
"@hiero-ledger/sdk": "2.79.0-beta.6",
1515
"ansi-regex": "6.2.2",
1616
"ansi-styles": "6.2.3",
1717
"body-parser": "1.20.3",

0 commit comments

Comments
 (0)