update workflow

This commit is contained in:
Vitaly Gashkov
2025-09-01 12:34:13 +05:00
parent 38ac098adb
commit a00b53007f
+6 -4
View File
@@ -38,15 +38,17 @@ jobs:
# Unzip the archive # Unzip the archive
unzip -q jadx.zip -d jadx-dist 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 # Add the JADX bin directory to the GitHub Actions path
# This makes the 'jadx' command available in subsequent steps # This makes the 'jadx' command available in subsequent steps
echo "$(pwd)/jadx-dist/jadx-${JADX_VERSION}/bin" >> $GITHUB_PATH 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 # Verify that JADX was installed correctly
- name: Verify JADX installation - name: Verify JADX installation
run: jadx --version run: jadx --version