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 43e70c9 commit f82ca92
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/on-release-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ jobs:
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" &&
cd ..
# TODO: Use M1 runner.
# - os: "macos-13"
# TARGET: "macos-13"
# - os: "macos-latest-xlarge"
# TARGET: "macos-latest-xlarge"
# CMD_BUILD: >
# brew install create-dmg &&
# source .venv/bin/activate &&
Expand Down Expand Up @@ -164,9 +164,13 @@ 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
C:\Users\runneradmin\.local\bin\poetry install --no-interaction --all-extras --with dev
if: runner.os == 'Windows'
shell: bash
- name: Install dependencies NOT Windows
run: poetry install --no-interaction --all-extras --with dev
if: runner.os != 'Windows'
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.24"
version = "0.4.25"
description = "TIDAL Medial Downloader Next Generation!"
authors = ["Robert Honz <cen.sored@gmail.com>"]
repository = "https://github.com/exislow/tidal-dl-ng"
Expand All @@ -13,7 +13,7 @@ packages = [
[tool.poetry]
name = "tidal-dl-ng"
authors = ["Robert Honz <cen.sored@gmail.com>"]
version = "0.4.24"
version = "0.4.25"
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 f82ca92

Please sign in to comment.