fix: 🐛 Hopefully fix release (#1644)
authorJozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com>
Tue, 3 Sep 2024 20:51:20 +0000 (22:51 +0200)
committerGitHub <noreply@github.com>
Tue, 3 Sep 2024 20:51:20 +0000 (22:51 +0200)
.github/workflows/release.yml
Dockerfile

index 180b4aa28588a8d4a80df5f8a85f24ef75074f87..2eafdd7397d44ad4c641e3084066557b01539a4c 100644 (file)
@@ -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
index 704782265f8d65caebea488dcb2fff4727900441..49a96db5e37f6bd4b989f922044bf37a95eb2991 100644 (file)
@@ -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'