From 2ac5d94eb8ef7b5d59588422b62f71f981508869 Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Mon, 1 Sep 2025 12:38:24 +0500 Subject: [PATCH] update workflow --- .github/workflows/extract.yml | 7 ++++++- .gitignore | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/extract.yml b/.github/workflows/extract.yml index 28275a4..e96aedb 100644 --- a/.github/workflows/extract.yml +++ b/.github/workflows/extract.yml @@ -42,13 +42,18 @@ jobs: # This makes the 'jadx' command available in subsequent steps echo "$(pwd)/jadx-dist/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 # Verify that JADX was installed correctly - name: Extract app credentials - run: node . --target mobile --output ./credentials.mobile.json && node . --target tv --output ./credentials.tv.json + run: | + npm install + node . --target mobile --output ./credentials.mobile.json && node . --target tv --output ./credentials.tv.json # Commit all changed files back to the repository - uses: stefanzweifel/git-auto-commit-action@v5 diff --git a/.gitignore b/.gitignore index b1ae595..e1ee850 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /node_modules .DS_Store /jadx-dist +/jadx.zip /crunchyroll crunchyroll.apk crunchyroll.xapk