From 5e1ca3cc21c2413f5ae5d0f83f0fcd7f1c05b577 Mon Sep 17 00:00:00 2001 From: Jozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:51:20 +0200 Subject: [PATCH] =?utf8?q?fix:=20=F0=9F=90=9B=20Hopefully=20fix=20release?= =?utf8?q?=20(#1644)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 5 +++++ Dockerfile | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 180b4aa2..2eafdd73 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -105,6 +105,11 @@ jobs: with: name: release-dists path: dist/ + - name: Copy Wheel to new location + shell: bash + run: | + mkdir -p pre_built_whl + cp dist/*.whl pre_built_whl/ - uses: actions/checkout@v4.1.4 - name: Download Widevine CDM client files from private repository shell: bash diff --git a/Dockerfile b/Dockerfile index 70478226..49a96db5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN set -x \ # Copy widevine client files to container RUN mkdir -p /usr/local/bin/widevine_cdm COPY widevine_cdm/* /usr/local/bin/widevine_cdm/ -COPY dist/music_assitant-${MASS_VERSION}-py3-none-any.whl /tmp/ +COPY pre_built_whl/music_assitant-${MASS_VERSION}-py3-none-any.whl /tmp/ RUN bash -c 'if [ "${DEV_RELEASE}" = "false" ]; then rm /tmp/music_assitant-${MASS_VERSION}-py3-none-any.whl; fi' -- 2.34.1