From d61e4c33c90bc3c22ad08314f2d128cfbb4ae822 Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Sat, 7 Mar 2026 19:52:43 +0200 Subject: [PATCH] fix job and Remove debug steps for Docker image build --- .github/workflows/release.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 01b6852..e6f1c76 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -189,31 +189,10 @@ jobs: with: name: linux-zip - - name: Debug artifact contents - run: | - echo "Current directory: $(pwd)" - echo "Listing top-level files:" - ls -lh - echo "Listing linux-zip directory contents:" - ls -lh linux-zip || echo "linux-zip does not exist" - echo "Tree of linux-zip (if installed):" - if command -v tree &> /dev/null; then - tree linux-zip || echo "linux-zip tree failed" - fi - - name: Extract linux artifact run: | mkdir -p dist/linux - tar -xzf linux-zip/yt-playlist-linux-${{ steps.version.outputs.version }}.tar.gz -C dist/linux || \ - (echo "Extraction failed"; ls -lh linux-zip; exit 1) - - - name: Debug dist/linux - run: | - echo "Listing dist/linux after extraction:" - ls -lh dist/linux - if command -v tree &> /dev/null; then - tree dist/linux - fi + tar -xzf yt-playlist-linux-${{ steps.version.outputs.version }}.tar.gz -C dist/linux - name: Build Docker image (release) run: docker build dist/linux -t $RELEASE_IMAGE