Skip to content

Commit 45af6ed

Browse files
committed
v2.2.3+91
앱이 바뀐건 없지만 app store cd test
1 parent b021a9f commit 45af6ed

File tree

6 files changed

+28
-7
lines changed

6 files changed

+28
-7
lines changed

.github/workflows/android-release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Android + GitHub Release 🚀
2+
13
on:
24
push:
35
tags:

.github/workflows/flutter.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Flutter CI 🔍
2+
13
on:
24
push:
35
branches:

.github/workflows/ios-release.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,15 @@ jobs:
4141
ruby-version: 3.2
4242

4343
- name: Install Fastlane
44-
run: cd ios && bundle install
44+
run: |
45+
cd ios
46+
bundle install
47+
bundle exec fastlane add_plugin discord
4548
4649
- name: Release to App Store
4750
env:
4851
APP_STORE_CONNECT_KEY_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ID }}
4952
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_ISSUER_ID }}
5053
APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY }}
51-
run: |
52-
cd ios
53-
bundle exec fastlane release
54+
run: bundle exec fastlane release
55+
working-directory: ios

ios/Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source "https://rubygems.org"
2+
3+
gem "fastlane"
4+
5+
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
6+
eval_gemfile(plugins_path) if File.exist?(plugins_path)

ios/fastlane/Fastfile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ default_platform(:ios)
33
platform :ios do
44
desc "Deploy to App Store directly 🚀"
55
lane :release do
6-
build_app(
7-
export_method: "app-store"
6+
app_store_connect_api_key(
7+
key_id: ENV["APP_STORE_CONNECT_KEY_ID"],
8+
issuer_id: ENV["APP_STORE_CONNECT_ISSUER_ID"],
9+
key_content: ENV["APP_STORE_CONNECT_API_KEY"],
810
)
911

1012
upload_to_app_store(
@@ -13,5 +15,12 @@ platform :ios do
1315
submit_for_review: true,
1416
automatic_release: true,
1517
)
18+
19+
discord(
20+
webhook_url: "https://discord.com/api/webhooks/1362457088433066316/3xKTs3n6_DP0p1BCwFu_xjPiecBrKq0mg8f_gaU9uRSLRJCwjfueTVKQkhMI1zXzSW3p",
21+
username: "Fastlane",
22+
message: "✅ App Store 배포 완료! 🎉",
23+
success: true
24+
)
1625
end
1726
end

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: For solving problems in the world of programming; base on solved.ac
33

44
publish_to: "none" # Remove this line if you wish to publish to pub.dev
55

6-
version: 2.2.3+90
6+
version: 2.2.3+91
77

88
environment:
99
sdk: ">=2.18.2 <3.0.0"

0 commit comments

Comments
 (0)