From: Jozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com> Date: Tue, 3 Sep 2024 20:51:20 +0000 (+0200) Subject: fix: 🐛 Hopefully fix release (#1644) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=5e1ca3cc21c2413f5ae5d0f83f0fcd7f1c05b577;p=music-assistant-server.git fix: 🐛 Hopefully fix release (#1644) --- 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'