Skip to content

Commit

Permalink
🛠️ Release GUI fix Windows poetry.
Browse files Browse the repository at this point in the history
  • Loading branch information
exislow committed Dec 20, 2023
1 parent f82ca92 commit 8771516
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/on-release-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" &&
Expand All @@ -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}} &&
Expand All @@ -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 &&
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
repository = "https://github.com/exislow/tidal-dl-ng"
Expand All @@ -13,7 +13,7 @@ packages = [
[tool.poetry]
name = "tidal-dl-ng"
authors = ["Robert Honz <[email protected]>"]
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/"
Expand Down

0 comments on commit 8771516

Please sign in to comment.