Skip to content

Commit

Permalink
workflow: Use Git LFS for APKs [skip ci]
Browse files Browse the repository at this point in the history
Change-Id: I2ae9777c10286264e5d97f7c0e972456673df540
Signed-off-by: PrajjuS <[email protected]>
  • Loading branch information
PrajjuS committed Sep 24, 2024
1 parent b7de34f commit bc27221
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/prebuilts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
distribution: "adopt"
java-version: "11"

- name: Install Git LFS
run: git lfs install

- name: Download DotGallery APK
uses: robinraju/[email protected]
with:
Expand Down Expand Up @@ -76,12 +79,17 @@ jobs:
exit 0
fi
- name: Track APKs using Git LFS
run: |
find . -type f -name "*.apk" -exec git lfs track {} \;
git add .gitattributes
git lfs ls-files
- name: Commit Changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "TheDroidxBot"
curl -sL "https://raw.githubusercontent.com/hipexscape/Scripts/tsm/commit_id.sh" | bash
git lfs install
if [ -n "$(git status --porcelain)" ]; then
UPDATED_APPS=$(echo $UPDATED_APPS | sed 's/,$//')
Expand Down

0 comments on commit bc27221

Please sign in to comment.