Skip to content

Commit

Permalink
minor change in fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Feb 4, 2025
1 parent 8d0003d commit 8a6dd68
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ platform :android do
)

slack(
message: "📱 AppKit Flutter Sample #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n",
message: ":reown-appkit: 🤖 AppKit Flutter Android Sample #{_app_version}-#{_flavor} (#{_new_build_number}) successfully released!\n\n",
default_payloads: [],
attachment_properties: {
fields: [
Expand Down
6 changes: 4 additions & 2 deletions packages/reown_appkit/example/base/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,14 @@ platform :ios do
clean: true,
xcargs: "PROJECT_ID='#{options[:project_id]}'"
)

_app_version = "3.0.0" #"options[:app_version]"

changelog = read_changelog

upload_to_testflight(
apple_id: options[:app_id],
app_version: options[:app_version],
app_version: "#{_app_version}",
build_number: "#{new_build_number}",
app_identifier: "#{app_identifier}",
changelog: changelog,
Expand All @@ -121,7 +123,7 @@ platform :ios do
)

slack(
message: "📱 AppKit Flutter Sample #{options[:app_version]}-#{_flavor} (#{new_build_number}) for 🍎 iOS successfully released!\n\n",
message: ":reown-appkit: 🍎 AppKit Flutter Android Sample #{_app_version}-#{_flavor} (#{new_build_number}) successfully released!\n\n",
default_payloads: [],
attachment_properties: {
fields: [
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_walletkit/example/android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ platform :android do
)

slack(
message: "🔐 WalletKit Flutter Sample #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n",
message: ":reown-walletkit: 🤖 WalletKit Flutter Android Sample #{_app_version}-#{_flavor} (#{_new_build_number}) successfully released!\n\n",
default_payloads: [],
attachment_properties: {
fields: [
Expand Down
6 changes: 4 additions & 2 deletions packages/reown_walletkit/example/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,14 @@ platform :ios do
clean: true,
xcargs: "PROJECT_ID='#{options[:project_id]}'"
)

_app_version = "3.0.0" #"options[:app_version]"

changelog = read_changelog

upload_to_testflight(
apple_id: options[:app_id],
app_version: options[:app_version],
app_version: "#{_app_version}",
build_number: "#{new_build_number}",
app_identifier: "#{app_identifier}",
changelog: changelog,
Expand All @@ -120,7 +122,7 @@ platform :ios do
)

slack(
message: "🔐 WalletKit Flutter Sample #{options[:app_version]}-#{_flavor} (#{new_build_number}) for 🍎 iOS successfully released!\n\n",
message: ":reown-walletkit: 🍎 WalletKit Flutter Android Sample #{_app_version}-#{_flavor} (#{new_build_number}) successfully released!\n\n",
default_payloads: [],
attachment_properties: {
fields: [
Expand Down

0 comments on commit 8a6dd68

Please sign in to comment.