Skip to content

Commit ec78c8c

Browse files
committed
fix: bump version to alpha 9
1 parent f781068 commit ec78c8c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build-and-release-desktop.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,8 @@ jobs:
213213
214214
# Calculate Base64-encoded SHA-512 hash using CertUtil
215215
HASH=$(certutil -hashfile "$FILE" SHA512 | tail -n +2 | head -n -1 | tr -d '\r\n' | xxd -r -p | base64)
216+
# Remove any newlines from the HASH
217+
HASH=$(echo "$HASH" | tr -d '\n')
216218
217219
# Log the calculated hash and file size
218220
echo "Calculated SHA-512 hash (Base64): $HASH"
@@ -235,7 +237,7 @@ jobs:
235237
yq e ".files[0].sha512 = \"$HASH\"" -i "$LATEST_YML"
236238
yq e ".files[0].size = $SIZE" -i "$LATEST_YML"
237239
yq e ".sha512 = \"$HASH\"" -i "$LATEST_YML"
238-
240+
yq e -i ".files[0].sha512 |= . | .sha512 |= ." "$LATEST_YML"
239241
echo "Updated $LATEST_YML with size=$SIZE and sha512=$HASH"
240242
if: matrix.os == 'windows-2019'
241243

packages/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "desktop",
33
"productName": "Firefly IOTA",
4-
"version": "2.1.0-alpha-8",
4+
"version": "2.1.0-alpha-9",
55
"description": "Official wallet application of Shimmer",
66
"main": "public/build/main.js",
77
"repository": "[email protected]:iotaledger/firefly.git",

0 commit comments

Comments
 (0)