Skip to content

Commit

Permalink
chore: added wallet prod deploy actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciosantise committed Apr 26, 2024
1 parent b3b303f commit a4961d6
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release-wallet-android-production.yaml
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 }}
29 changes: 29 additions & 0 deletions .github/workflows/release-wallet-ios-production.yaml
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 }}

0 comments on commit a4961d6

Please sign in to comment.