Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
Add iOS to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Hjort committed Nov 28, 2023
1 parent 133278d commit 1e5fa71
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,33 +54,33 @@ jobs:
--track internal
android-build-and-release:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutter_version }}
channel: 'stable'
cache: true
- name: Download pub dependencies
run: flutter pub get
- name: Build iOS IPA
run: flutter build ipa
- name: Upload Bundle
uses: actions/upload-artifact@v3
with:
name: concordium-wallet-${{ github.ref_name }}.ipa
path: "${{github.workspace}}/build/ios/ipa/${{ env.app_name }}.ipa
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.ruby_version }}
bundler-cache: true
- name: Upload to testflight
env:
PILOT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY }}
run: |
bundle exec fastlane pilot upload \
--ipa build/ios/ipa/${{ env.app_name }}.ipa \
--track internal
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.flutter_version }}
channel: 'stable'
cache: true
- name: Download pub dependencies
run: flutter pub get
- name: Build iOS IPA
run: flutter build ipa
- name: Upload Bundle
uses: actions/upload-artifact@v3
with:
name: concordium-wallet-${{ github.ref_name }}.ipa
path: "${{github.workspace}}/build/ios/ipa/${{ env.app_name }}.ipa
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.ruby_version }}
bundler-cache: true
- name: Upload to testflight
env:
PILOT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY }}
run: |
bundle exec fastlane pilot upload \
--ipa build/ios/ipa/${{ env.app_name }}.ipa \
--track internal

0 comments on commit 1e5fa71

Please sign in to comment.