From f2db789e7514881cbb676184cc93b60982822a79 Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Mon, 1 Sep 2025 12:36:22 +0500 Subject: [PATCH] update workflow --- .github/workflows/extract.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/extract.yml b/.github/workflows/extract.yml index a40b947..28275a4 100644 --- a/.github/workflows/extract.yml +++ b/.github/workflows/extract.yml @@ -38,16 +38,9 @@ jobs: # Unzip the archive unzip -q jadx.zip -d jadx-dist - # Debug - echo "PATH is: $PATH" - ls -l $(pwd)/jadx-dist/ - ls -l $(pwd)/jadx-dist/*/bin - $(pwd)/jadx-dist/jadx-*/bin/jadx --version - chmod +x $(pwd)/jadx-dist/jadx-${JADX_VERSION}/bin/jadx - # Add the JADX bin directory to the GitHub Actions path # This makes the 'jadx' command available in subsequent steps - echo "$(pwd)/jadx-dist/jadx-${JADX_VERSION}/bin" >> $GITHUB_PATH + echo "$(pwd)/jadx-dist/bin" >> $GITHUB_PATH # Verify that JADX was installed correctly - name: Verify JADX installation