From 98c0ea19e8bb82eeda79ad8f3658c604994d6502 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Wed, 22 Feb 2023 23:47:52 -0800 Subject: [PATCH] executable, run help --- .github/workflows/release.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d2796d46..73f7c999 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -83,11 +83,9 @@ jobs: # Build executable pyinstaller ytdl-sub.spec mkdir -p /opt/builds + chmod +x dist/ytdl-sub + dist/ytdl-sub -h mv dist/ytdl-sub /opt/builds/ytdl-sub_linux - - name: Test Package - run: | - cd /opt/builds && ./ytdl-sub_linux view "https://www.youtube.com/watch?v=hxV9b-1hjfw" - - name: Save build to cache uses: actions/cache@v3 with: @@ -125,7 +123,7 @@ jobs: pip3 install pyinstaller pyinstaller --log-level=DEBUG ytdl-sub.spec mv dist/ytdl-sub /builds/ytdl-sub_${{ matrix.arch }} - cd /builds && ./ytdl-sub_${{ matrix.arch }} view "https://www.youtube.com/watch?v=hxV9b-1hjfw" + cd /builds && ./ytdl-sub_${{ matrix.arch }} -h - name: Save build to cache uses: actions/cache@v3