Skip to content

Commit

Permalink
feat: Internal Build Actions
Browse files Browse the repository at this point in the history
Add internal build actions
  • Loading branch information
Alex Risch authored and Alex Risch committed Jul 25, 2024
1 parent df96afb commit 027b688
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/check-android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Clean Android Device
# https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Build Android app
run: eas build --platform android --profile development --local --output ${{ github.workspace }}/app-release.apk
# Don't upload the artifact for now as we just want to make sure it builds
Expand Down

0 comments on commit 027b688

Please sign in to comment.