Skip to content

Commit b71b7b8

Browse files
committed
fix(ci): pipe COINBASE_ONRAMP_API_KEY into local.properties
The workflow never wrote the Coinbase onramp API key to local.properties, so production builds shipped with an empty string and the server rejected GetJwtRequest with: INVALID_ARGUMENT: invalid ApiKey.Value: value length must be 36 runes
1 parent e35b4a2 commit b71b7b8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/build-fcash2-upload-android.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ jobs:
9494
- name: Setup Mixpanel API Key
9595
run: echo MIXPANEL_API_KEY=\"${{ secrets.FLIPCASH_MIXPANEL_API_KEY }}\" >> ./local.properties
9696

97+
- name: Setup Coinbase OnRamp API Key
98+
run: echo COINBASE_ONRAMP_API_KEY=${{ secrets.COINBASE_ONRAMP_API_KEY }} >> ./local.properties
99+
97100
- name: Run tests
98101
run: bundle exec fastlane android flipcash_tests
99102

0 commit comments

Comments
 (0)