AMP-85465 Objective-C v2 app #69
Workflow file for this run
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: Ampli Merge Check (iOS) | |
on: | |
pull_request: | |
paths: | |
- 'ios/objective-c/**' | |
- 'ios/swift/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: amplitudeinc/ampli-swift | |
env: | |
API_URL: https://data-api.staging.amplitude.com/graphql | |
APP_URL: https://data.staging.amplitude.com/ | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: (iOS Swift V1) Check the Data branch is merged before merging the Git branch | |
working-directory: ./ios/swift/v1/AmpliSwiftSampleApp | |
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}} | |
- name: (iOS Swift V2) Check the Data branch is merged before merging the Git branch | |
working-directory: ./ios/swift/v2/AmpliSwiftSampleApp | |
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}} | |
- name: (iOS Objective-C V1) Check the Data branch is merged before merging the Git branch | |
working-directory: ./ios/objective-c/v1/AmpliObjectiveCSampleApp | |
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}} | |
- name: (iOS Objective-C V2) Check the Data branch is merged before merging the Git branch | |
working-directory: ./ios/objective-c/v2/AmpliObjectiveCSampleApp | |
run: ampli status --is-merged -t ${{secrets.AMPLI_TOKEN}} |