Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Setup Wire Edge app - WPB-15280 #2420

Open
wants to merge 9 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/_reusable_app_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ on:
required: true
BETA_TESTFLIGHT_LINK:
required: true
EDGE_TESTFLIGHT_LINK:
required: true
COUNTLY_PRODUCTION_KEY:
required: true
COUNTLY_INTERNAL_KEY:
Expand Down Expand Up @@ -114,6 +116,7 @@ jobs:
C3_S3_SUBFOLDER_PRODUCTION: ${{ secrets.C3_S3_SUBFOLDER_PRODUCTION }}
C3_APP_CENTER_APP_NAME_PRODUCTION: ${{ secrets.C3_APP_CENTER_APP_NAME_PRODUCTION }}
BETA_TESTFLIGHT_LINK: ${{ secrets.BETA_TESTFLIGHT_LINK }}
EDGE_TESTFLIGHT_LINK: ${{ secrets.EDGE_TESTFLIGHT_LINK }}
PLAYGROUND_TESTFLIGHT_LINK: ${{ secrets.PLAYGROUND_TESTFLIGHT_LINK }}
COUNTLY_PRODUCTION_KEY: ${{ secrets.COUNTLY_PRODUCTION_KEY }}
COUNTLY_INTERNAL_KEY: ${{ secrets.COUNTLY_INTERNAL_KEY }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Development
name: Edge

on:
workflow_dispatch:
Expand Down
4 changes: 3 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,14 @@ platform :ios do
desc "Build & Upload Development build"
lane :development do |options|
options[:build_type] = "Development"
options[:upload_app_center] = true
options[:upload_app_center] = false
options[:upload_testflight] = true
options[:upload_dsyms_to_datadog] = true
options[:produce_debug_builds] = true
options[:countly_api_key] = ENV['COUNTLY_INTERNAL_KEY']
save_app_name('Development')
build_and_upload_app(options)
`export TEMP='BUILD_INSTALL_LINK=#{ENV['EDGE_TESTFLIGHT_LINK']}' && echo $TEMP >> ./.post_build/.env`
end

desc "Build & Upload Playground build"
Expand Down
2 changes: 1 addition & 1 deletion wire-ios-build-assets
Loading