Skip to content

Commit

Permalink
wip: check all changed files
Browse files Browse the repository at this point in the history
use proper app
  • Loading branch information
newhinton committed Apr 27, 2024
1 parent 2f6d74d commit 57ee434
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@ jobs:
- name: Verify build.gradle changed
id: changeDetection
run: echo "should-run=true" >> $GITHUB_OUTPUT
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
# To compare changes between the current commit and the last pushed remote commit set `since_last_remote_commit: true`. e.g
# with:
# since_last_remote_commit: true

- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
verify-dependencies:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -58,7 +72,7 @@ jobs:
mv apktool* repo/lib/radar/tool
chmod u+x repo/lib/radar/tool/apktool
mv repo/lib/radar/tool/apktool_$apktoolVersion.jar repo/lib/radar/tool/apktool.jar
repo/bin/scanapk.php app/build/outputs/apk/oss/debug/roundsync_v*?(-beta)-oss-universal-debug.apk
repo/bin/scanapk.php app/build/outputs/apk/oss/debug/roundsync_v*-oss-universal-debug.apk
env:
apktoolVersion: "2.9.3"
- name: 'Get Commit Hash'
Expand Down

0 comments on commit 57ee434

Please sign in to comment.