Skip to content

Commit

Permalink
Move step to install darwin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
atavism committed Oct 30, 2024
1 parent 8ab7e9d commit 9a86f06
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,19 @@ jobs:
APP_VERSION=$(grep '^version:' pubspec.yaml | sed 's/version: //')
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV
- uses: actions/setup-node@v5
if: matrix.platform == 'macos'
with:
node-version: latest

- name: Install darwin installer dependencies
if: matrix.platform == 'macos'
run: |
npm install -g appdmg
brew tap joshdk/tap
brew install joshdk/tap/retry
brew install imagemagick || true
- name: Build Flutter app (Windows)
if: matrix.platform == 'windows'
run: |
Expand Down

0 comments on commit 9a86f06

Please sign in to comment.