Skip to content

Commit

Permalink
CI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
atavism committed Oct 30, 2024
1 parent 5e65759 commit 2e1ab8a
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,25 @@ jobs:
MACOS_CERTIFICATE: ${{ secrets.MACOS_BNS_CERT }}
MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_BNS_CERT_PASS }}

- name: Build Flutter app
if: matrix.platform == 'android' || matrix.platform == 'linux'
- name: Build Flutter app (Android)
if: matrix.platform == 'android'
run: |
sudo apt-get clean
sudo apt-get autoremove -y
sudo apt-get remove --purge $(dpkg --list | grep '^rc' | awk '{print $2}')
make package-android
go clean -modcache
go clean -cache -testcache
df -h
env:
INTERSTITIAL_AD_UNIT: "${{ secrets.INTERSTITIAL_AD_UNIT_ID }}"
SENTRY_AUTH_TOKEN: "${{ secrets.SENTRY_AUTH_TOKEN }}"
VERSION: "${{ env.version }}"


- name: Build Flutter app (Linux)
if: matrix.platform == 'linux'
run: make package-${{ matrix.platform }}
env:
INTERSTITIAL_AD_UNIT: "${{ secrets.INTERSTITIAL_AD_UNIT_ID }}"
Expand Down

0 comments on commit 2e1ab8a

Please sign in to comment.