Add default name and email in customer sheet playground (#7524) #1285
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
name: Upload aabs on push | |
# Upload aabs of example apps when changes are merged to master branch. | |
# The aab is used as a base reference to compare with aab built from pull requests. | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
upload-identity: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/stripe_setup | |
- name: Generate Android release bundle for Identity example app | |
run: ./gradlew :identity-example:bundleRelease | |
- name: Upload artifact to Emerge | |
uses: EmergeTools/[email protected] | |
with: | |
artifact_path: identity-example/build/outputs/bundle/theme1Release/identity-example-theme1-release.aab | |
emerge_api_key: ${{ secrets.EMERGE_API_KEY }} | |
build_type: push | |
upload-financial-connections: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/stripe_setup | |
- name: Generate Android release bundle for Financial Connections example app | |
run: ./gradlew :financial-connections-example:bundleRelease | |
- name: Upload artifact to Emerge | |
uses: EmergeTools/[email protected] | |
with: | |
artifact_path: financial-connections-example/build/outputs/bundle/release/financial-connections-example-release.aab | |
emerge_api_key: ${{ secrets.EMERGE_API_KEY }} | |
build_type: push | |
upload-payment-sheet: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/stripe_setup | |
- name: Generate Android release bundle for Payment Sheet example app | |
run: ./gradlew :paymentsheet-example:bundleRelease | |
- name: Upload artifact to Emerge | |
uses: EmergeTools/[email protected] | |
with: | |
artifact_path: paymentsheet-example/build/outputs/bundle/release/paymentsheet-example-release.aab | |
emerge_api_key: ${{ secrets.EMERGE_API_KEY }} | |
build_type: push |