fix(#25): v2.00.0 업데이트 이후 기록이 정상적으로 불러와지지 않는 문제 수정 #38
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: Deploy App to TestFlight(release) / Shorebird(patch) | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
inputs: | |
release_type: | |
description: "Deployment type (release / patch)" | |
required: true | |
default: "release" | |
jobs: | |
init: | |
runs-on: macMini | |
if: ${{ contains(github.event.head_commit.message , '#release') || contains(github.event.head_commit.message , '#patch') || github.event_name == 'workflow_dispatch' }} | |
name: Initialize repo & flutter | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Initialize flutter | |
run: | | |
flutter clean | |
flutter pub get | |
flutter pub run build_runner build --delete-conflicting-outputs | |
cd ios && pod install && cd .. | |
release: | |
runs-on: macMini | |
needs: init | |
if: ${{ contains(github.event.head_commit.message , '#release') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_type == 'release') }} | |
name: Build & Deploy Release | |
steps: | |
- name: Build .ipa using shorebird | |
run: shorebird release ios -f | |
- name: Deploy .ipa using fastlane | |
run: cd ios && bundle exec fastlane beta | |
env: | |
FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD: ${{ secrets.FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD }} | |
timeout-minutes: 40 | |
patch: | |
runs-on: macMini | |
needs: init | |
if: ${{ contains(github.event.head_commit.message , '#patch') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_type == 'patch') }} | |
name: Build & Deploy Patch | |
steps: | |
- name: Build & Deploy patch using shorebird | |
run: shorebird patch ios -f |