1.0.53+53 #112
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: upload | |
on: | |
push: | |
tags: | |
- '*' | |
branches: | |
- migrate | |
jobs: | |
android: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.16.7' | |
channel: 'stable' | |
- name: Flutter Pub Get | |
run: flutter pub get | |
- env: | |
ANDROID_SIGNING: ${{ secrets.ANDROID_SIGNING }} | |
PLAYSTORE_API_KEY: ${{ secrets.PLAYSTORE_SERVICE_ACCOUNT_JSON }} | |
GOOGLE_SERVICE_INFO: ${{ secrets.FIREBASE_ANDROID_GOOGLE_SERVICE_INFO }} | |
name: Import Signing | |
run: | | |
base64 -d <<< $ANDROID_SIGNING > signing.zip && unzip -o -d android/app signing.zip | |
base64 -d <<< $PLAYSTORE_API_KEY > android/app/signing/playstore_key.json | |
base64 -d <<< $GOOGLE_SERVICE_INFO > android/app/src/release/google-services.json | |
- name: Flutter Build | |
run: flutter build appbundle --release --dart-define=env=prod --no-shrink | |
- uses: r0adkll/[email protected] | |
name: Upload Play Store | |
with: | |
serviceAccountJson: android/app/signing/playstore_key.json | |
packageName: nrikiji.flutter_start_app | |
releaseFile: build/app/outputs/bundle/release/app-release.aab | |
track: internal | |
ios: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Select Xcode version | |
run: sudo xcode-select -s '/Applications/Xcode_15.0.app/Contents/Developer' | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.16.7' | |
channel: 'stable' | |
- name: Flutter Pub Get | |
run: flutter pub get | |
- name: Bundle Install | |
working-directory: ./ios | |
run: bundle install | |
- name: Setup App Store Connect API | |
id: asc | |
uses: yuki0n0/[email protected] | |
with: | |
key id: ${{ secrets.ASC_KEY_ID }} | |
issuer id: ${{ secrets.ASC_ISSUER_ID }} | |
key: ${{ secrets.ASC_API_KEY }} | |
- name: Import Certificates | |
env: | |
CERTIFICATES: ${{ secrets.APPLE_CERTIFICATES }} | |
PROVISIONING_PROFILE: ${{ secrets.APPLE_PROFILE }} | |
GOOGLE_SERVICE_INFO: ${{ secrets.FIREBASE_IOS_GOOGLE_SERVICE_INFO }} | |
working-directory: ./ios | |
run: | | |
mkdir -p certificates | |
base64 -D -o certificates/distribute.p12 <<< $CERTIFICATES | |
base64 -D -o certificates/distribute.mobileprovision <<< $PROVISIONING_PROFILE | |
base64 -D -o Runner/GoogleService-Info-prod.plist <<< $GOOGLE_SERVICE_INFO | |
bundle exec fastlane setup | |
- name: Flutter Build | |
env: | |
FLUTTER_BUILD_MODE: 'release' | |
run: flutter build ios --release --dart-define=env=prod | |
- name: Upload App Store | |
env: | |
ASC_TEAM_ID: ${{ secrets.ASC_TEAM_ID }} | |
ASC_KEY_ID: ${{ secrets.ASC_KEY_ID }} | |
ASC_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }} | |
ASC_API_KEY: ${{ secrets.ASC_API_KEY }} | |
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | |
working-directory: ./ios | |
run: bundle exec fastlane gh_actions_store_app_distribution |