Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
seinsinnes authored Jan 15, 2025
1 parent 8af1498 commit f3c5413
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,15 @@ jobs:

#Remove all pre-installed android sdk build tool versions except 28.0.3
- name: Remove unwanted android sdk build tool versions
run: Get-ChildItem -Path "C:/Android/android-sdk/build-tools" -Exclude 28.0.3,29.0.2 | Remove-Item -Recurse -Force
run: |
Get-ChildItem -Path "C:/Android/android-sdk/build-tools" -Exclude 28.0.3,29.0.2 | Remove-Item -Recurse -Force
Get-ChildItem -Path "C:/Android/android-sdk/build-tools"
#Remove all pre-installed android sdk platform versions except 29
- name: Remove unwanted android sdk platform versions
run: Get-ChildItem -Path "C:/Android/android-sdk/platforms" -Exclude android-29 | Remove-Item -Recurse -Force
run: |
Get-ChildItem -Path "C:/Android/android-sdk/platforms" -Exclude android-29 | Remove-Item -Recurse -Force
Get-ChildItem -Path "C:/Android/android-sdk/platforms"
#Run build script
- name: Run build batch script
Expand Down

0 comments on commit f3c5413

Please # to comment.