-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: added wallet prod deploy actions
- Loading branch information
ignaciosantise
committed
Apr 26, 2024
1 parent
b3b303f
commit a4961d6
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: release-android-web3wallet-production | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
release-internal: | ||
uses: ./.github/workflows/release-android-base.yaml | ||
with: | ||
name: Web3Wallet React Native | ||
root-path: 'wallets/rn_cli_wallet' | ||
release-type: 'production' | ||
output-path: 'wallets/rn_cli_wallet/android/app/build/outputs/apk/release/app-release.apk' | ||
secrets: | ||
project-id: ${{ secrets.ENV_PROJECT_ID }} | ||
relay-url: ${{ secrets.ENV_RELAY_URL }} | ||
sentry-dsn: ${{ secrets.W3W_SENTRY_DSN }} | ||
sentry-file: ${{ secrets.W3W_SENTRY_FILE }} | ||
secrets-file: ${{ secrets.ANDROID_SECRETS_FILE }} | ||
firebase-app-id: ${{ vars.W3W_ANDROID_PROD_FIREBASE_APP_ID }} | ||
gsa-key: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_KEY }} | ||
keystore-name: ${{ vars.WC_PROD_KEYSTORE_NAME }} | ||
keystore: ${{ secrets.WC_PROD_KEYSTORE }} | ||
google-services-file: ${{ secrets.ANDROID_GOOGLE_SERVICES_BASE64 }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: release-ios-web3wallet-production | ||
on: workflow_dispatch | ||
|
||
jobs: | ||
release-internal: | ||
uses: ./.github/workflows/release-ios-base.yaml | ||
with: | ||
name: Web3Wallet React Native | ||
root-path: 'wallets/rn_cli_wallet' | ||
xcode-project-path: 'wallets/rn_cli_wallet/ios/RNWeb3Wallet.xcodeproj' | ||
xcode-workspace-path: 'wallets/rn_cli_wallet/ios/RNWeb3Wallet.xcworkspace' | ||
release-type: 'production' | ||
scheme-name: 'RNWallet' | ||
bundle-id: 'com.walletconnect.web3wallet.rnsample' | ||
apple-id: '6449264964' | ||
secrets: | ||
project-id: ${{ secrets.ENV_PROJECT_ID }} | ||
relay-url: ${{ secrets.ENV_RELAY_URL }} | ||
sentry-dsn: ${{ secrets.W3W_SENTRY_DSN }} | ||
sentry-file: ${{ secrets.W3W_SENTRY_FILE }} | ||
apple-username: ${{ secrets.APPLE_USERNAME }} | ||
apple-key-id: ${{ secrets.APPLE_KEY_ID }} | ||
apple-key-content: ${{ secrets.APPLE_KEY_CONTENT }} | ||
apple-issuer-id: ${{ secrets.APPLE_ISSUER_ID }} | ||
match-username: ${{ secrets.MATCH_USERNAME }} | ||
match-keychain-password: ${{ secrets.MATCH_KEYCHAIN_PASSWORD }} | ||
match-git-url: ${{ secrets.MATCH_GIT_URL }} | ||
match-ssh-key: ${{ secrets.MATCH_SSH_KEY }} | ||
google-services-file: ${{ secrets.W3W_IOS_PROD_GOOGLE_SERVICES_FILE }} |