From a00b53007f5bbda1cc366596d962f17a4a01e4ea Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Mon, 1 Sep 2025 12:34:13 +0500 Subject: [PATCH] update workflow --- .github/workflows/extract.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/extract.yml b/.github/workflows/extract.yml index 1792096..a40b947 100644 --- a/.github/workflows/extract.yml +++ b/.github/workflows/extract.yml @@ -38,15 +38,17 @@ jobs: # Unzip the archive unzip -q jadx.zip -d jadx-dist - echo $PATH && ls $(pwd)/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 - # Clean up the downloaded zip file - rm jadx.zip - # Verify that JADX was installed correctly - name: Verify JADX installation run: jadx --version