Adding integration tests for default test app behaviour #2
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
# currently the frame work is for macos, ios & tvos | |
name: Build Apple Framework | |
env: | |
project: PopMp4 | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- '*Test*' | |
jobs: | |
Build: | |
name: Apple Framework | |
runs-on: macos-12 | |
steps: | |
- name: "Import Apple-Distriubution NewChromantics Signing Certificate" | |
uses: NewChromantics/[email protected] | |
with: | |
certificate-data: ${{ secrets.APPLE_DIST_NEWCHROMANTICS_P12 }} | |
certificate-passphrase: ${{ secrets.APPLE_DIST_NEWCHROMANTICS_PASSWORD }} | |
keychain-password: "Hello" | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Build Universal | |
uses: NewChromantics/[email protected] | |
with: | |
BuildScheme: ${{ env.project }}_Framework | |
project: ${{ env.project }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
# tsdk: these env vars are set in each of the actions | |
name: ${{ env.UPLOAD_NAME }} | |
path: ${{ env.UPLOAD_DIR }} |