Skip to content

Commit

Permalink
Move flutter install
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mabe committed Oct 29, 2023
1 parent f88ff0d commit 66c602f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build_and_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,15 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

# Set up Flutter.
- uses: subosito/flutter-action@v1
with:
channel: "stable"

- run: flutter doctor -v

- run: flutter pub get

# Install the Apple certificate and provisioning profile
- name: Install the Apple certificate and provisioning profile
env:
Expand All @@ -132,15 +141,6 @@ jobs:
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles
# Set up Flutter.
- uses: subosito/flutter-action@v1
with:
channel: "stable"

- run: flutter doctor -v

- run: flutter pub get

# Build and sign the ipa using a single flutter command
- name: Building IPA
run: flutter build ipa --release
Expand Down

0 comments on commit 66c602f

Please sign in to comment.