Skip to content

Commit f781068

Browse files
committed
fix: bump version to 8
1 parent f06a2a6 commit f781068

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

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

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,16 @@ jobs:
219219
echo "File size (bytes): $SIZE"
220220
221221
# Install Chocolatey and yq (for Windows)
222-
if [[ "$RUNNER_OS" == "Windows" ]]; then
223-
Set-ExecutionPolicy Bypass -Scope Process -Force
224-
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12
225-
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
226-
choco install yq -y
222+
if ! command -v yq &> /dev/null; then
223+
echo "yq not found. Installing yq..."
224+
powershell -Command "
225+
Set-ExecutionPolicy Bypass -Scope Process -Force;
226+
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;
227+
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'));
228+
choco install yq -y
229+
"
230+
else
231+
echo "yq is already installed."
227232
fi
228233
229234
# Update the YAML file using yq

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-7",
4+
"version": "2.1.0-alpha-8",
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)