From 8342f3fedf27b30f79baf3b50d3e12c9270ba74d Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Wed, 22 Feb 2023 16:21:39 -0800 Subject: [PATCH] try ubuntu --- .github/workflows/release.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 96318bb7..3d8ee094 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -95,7 +95,7 @@ jobs: id: runcmd with: arch: ${{ matrix.arch }} - distro: alpine_latest + distro: ubuntu22.04 # Mount the artifacts directory as /artifacts in the container dockerRunArgs: | @@ -103,13 +103,12 @@ jobs: # Set an output parameter `uname` for use in subsequent steps run: | - apk add python3 py3-pip python3 -m pip install -e . echo "Done!" python3 -m pip install pyinstaller echo "installed" pyinstaller --help - pyinstaller ytdl-sub.spec + pyinstaller --debug=all ytdl-sub.spec mv dist/ytdl-sub /artifacts/ytdl-sub_${{ matrix.arch }} - name: Upload artifacts