From 877151698fa9a4c65e6a94bef3a2d4e597302ddd Mon Sep 17 00:00:00 2001 From: Robert Honz Date: Wed, 20 Dec 2023 13:06:23 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Release=20GUI=20fix=20W?= =?UTF-8?q?indows=20poetry.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/on-release-master.yml | 7 +++---- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/on-release-master.yml b/.github/workflows/on-release-master.yml index 1669d70..ceeb2bb 100644 --- a/.github/workflows/on-release-master.yml +++ b/.github/workflows/on-release-master.yml @@ -105,7 +105,7 @@ jobs: OS_ARCH: ${{needs.compute.outputs.ARCH_MACOS_X64}} CMD_BUILD: > brew install create-dmg && - source .venv/bin/activate && + source $VENV && poetry run make gui-macos && cd dist && 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: TARGET: "ubuntu-20.04" OS_ARCH: ${{needs.compute.outputs.ARCH_LINUX_X64}} CMD_BUILD: > - source .venv/bin/activate && + source $VENV && poetry run make gui && cd dist && 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: choco feature enable -n=allowGlobalConfirmation choco install zip choco install make - source .venv/scripts/activate && + source $VENV && C:\Users\runneradmin\.local\bin\poetry run make gui && cd dist && 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: key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - name: Install dependencies Windows run: | - source $VENV dir dir C:\Users\runneradmin\.local\bin poetry install --no-interaction --all-extras --with dev diff --git a/pyproject.toml b/pyproject.toml index 6d5d1d1..1d17510 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tidal-dl-ng" -version = "0.4.25" +version = "0.4.26" description = "TIDAL Medial Downloader Next Generation!" authors = ["Robert Honz "] repository = "https://github.com/exislow/tidal-dl-ng" @@ -13,7 +13,7 @@ packages = [ [tool.poetry] name = "tidal-dl-ng" authors = ["Robert Honz "] -version = "0.4.25" +version = "0.4.26" description = "TIDAL Medial Downloader Next Generation!" repository = "https://github.com/exislow/tidal-dl-ng" documentation = "https://exislow.github.io/tidal-dl-ng/"