Skip to content

Commit 8771516

Browse files
committed
🛠️ Release GUI fix Windows poetry.
1 parent f82ca92 commit 8771516

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/on-release-master.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
OS_ARCH: ${{needs.compute.outputs.ARCH_MACOS_X64}}
106106
CMD_BUILD: >
107107
brew install create-dmg &&
108-
source .venv/bin/activate &&
108+
source $VENV &&
109109
poetry run make gui-macos &&
110110
cd dist &&
111111
zip -r ${{needs.compute.outputs.OUT_NAME_FILE}}_${{needs.compute.outputs.ARCH_MACOS_X64}}${{needs.compute.outputs.ASSET_EXTENSION}} ${{needs.compute.outputs.OUT_NAME_FILE}}.dmg -x "*.DS_Store" &&
@@ -124,7 +124,7 @@ jobs:
124124
TARGET: "ubuntu-20.04"
125125
OS_ARCH: ${{needs.compute.outputs.ARCH_LINUX_X64}}
126126
CMD_BUILD: >
127-
source .venv/bin/activate &&
127+
source $VENV &&
128128
poetry run make gui &&
129129
cd dist &&
130130
zip -r ${{needs.compute.outputs.OUT_NAME_FILE}}_${{needs.compute.outputs.ARCH_LINUX_X64}}${{needs.compute.outputs.ASSET_EXTENSION}} ${{needs.compute.outputs.OUT_NAME_FILE}} &&
@@ -136,7 +136,7 @@ jobs:
136136
choco feature enable -n=allowGlobalConfirmation
137137
choco install zip
138138
choco install make
139-
source .venv/scripts/activate &&
139+
source $VENV &&
140140
C:\Users\runneradmin\.local\bin\poetry run make gui &&
141141
cd dist &&
142142
zip -r ${{needs.compute.outputs.OUT_NAME_FILE}}_${{needs.compute.outputs.ARCH_WINDOWS_X64}}${{needs.compute.outputs.ASSET_EXTENSION}} ${{needs.compute.outputs.OUT_NAME_FILE}}.exe &&
@@ -164,7 +164,6 @@ jobs:
164164
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
165165
- name: Install dependencies Windows
166166
run: |
167-
source $VENV
168167
dir
169168
dir C:\Users\runneradmin\.local\bin
170169
poetry install --no-interaction --all-extras --with dev

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tidal-dl-ng"
3-
version = "0.4.25"
3+
version = "0.4.26"
44
description = "TIDAL Medial Downloader Next Generation!"
55
authors = ["Robert Honz <cen.sored@gmail.com>"]
66
repository = "https://github.com/exislow/tidal-dl-ng"
@@ -13,7 +13,7 @@ packages = [
1313
[tool.poetry]
1414
name = "tidal-dl-ng"
1515
authors = ["Robert Honz <cen.sored@gmail.com>"]
16-
version = "0.4.25"
16+
version = "0.4.26"
1717
description = "TIDAL Medial Downloader Next Generation!"
1818
repository = "https://github.com/exislow/tidal-dl-ng"
1919
documentation = "https://exislow.github.io/tidal-dl-ng/"

0 commit comments

Comments
 (0)