Skip to content

Commit

Permalink
minor changes in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Sep 19, 2024
1 parent a40ca59 commit 4a47a17
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_dapp_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
FULL_VERSION=${PARTS[1]}
VERSION_NUMBER=(${FULL_VERSION//-/ })
flutter build ios --flavor production --build-name $VERSION_NUMBER --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release
flutter build ios --flavor production --build-name 3.0.0 --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release
# Fastlane
- name: Fastlane
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_dapp_ios_internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
FULL_VERSION=${PARTS[1]}
VERSION_NUMBER=(${FULL_VERSION//-/ })
flutter build ios --flavor internal --build-name $VERSION_NUMBER --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release
flutter build ios --flavor internal --build-name 3.0.0 --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release
# Fastlane
- name: Fastlane
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_wallet_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
FULL_VERSION=${PARTS[1]}
VERSION_NUMBER=(${FULL_VERSION//-/ })
flutter build ios --flavor production --build-name $VERSION_NUMBER --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release
flutter build ios --flavor production --build-name 3.0.0 --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release
# Fastlane
- name: Fastlane
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_wallet_ios_internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
FULL_VERSION=${PARTS[1]}
VERSION_NUMBER=(${FULL_VERSION//-/ })
flutter build ios --flavor internal --build-name $VERSION_NUMBER --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release
flutter build ios --flavor internal --build-name 3.0.0 --dart-define="PROJECT_ID=$PROJECT_ID" --config-only --release
# Fastlane
- name: Fastlane
Expand Down
4 changes: 2 additions & 2 deletions packages/reown_appkit/example/base/android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ platform :android do
_new_build_number = 1
end

_app_version = "#{options[:app_version]}"
_app_version = "3.0.0" #"#{options[:app_version]}"
_project_id = "#{options[:project_id]}"

# gradle(task: 'assemble', build_type: 'Release')
Expand All @@ -78,7 +78,7 @@ platform :android do
)

slack(
message: "📱 AppKit Flutter #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n",
message: "📱 AppKit Flutter Sample #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n",
default_payloads: [],
attachment_properties: {
fields: [
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_appkit/example/base/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ platform :ios do
)

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

_app_version = "#{options[:app_version]}"
_app_version = "3.0.0" #"#{options[:app_version]}"
_project_id = "#{options[:project_id]}"

# gradle(task: 'assemble', build_type: 'Release')
Expand All @@ -78,7 +78,7 @@ platform :android do
)

slack(
message: "🔐 WalletKit Flutter #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n",
message: "🔐 WalletKit Flutter Sample #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n",
default_payloads: [],
attachment_properties: {
fields: [
Expand Down
2 changes: 1 addition & 1 deletion packages/reown_walletkit/example/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ platform :ios do
)

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

0 comments on commit 4a47a17

Please sign in to comment.