Fixed ios compiling #174
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: Build Apple | |
env: | |
project: PopCameraDevice | |
on: | |
push: | |
branches: | |
- master | |
- '*Test*' | |
jobs: | |
Test: | |
name: Apple frameworks | |
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 _Osx framework | |
uses: NewChromantics/[email protected] | |
with: | |
BuildScheme: ${{ env.project }}_Osx | |
project: ${{ env.project }} | |
- name: Build _Ios framework | |
uses: NewChromantics/[email protected] | |
with: | |
BuildScheme: ${{ env.project }}_Ios | |
project: ${{ env.project }} | |
- name: Build _Universal framework | |
uses: NewChromantics/[email protected] | |
with: | |
BuildScheme: ${{ env.project }}_Universal | |
project: ${{ env.project }} | |
# gr: create artifacts so we can test master commits before publishing a tag | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
# tsdk: these env vars are set in each of the actions | |
name: ${{ env.UPLOAD_NAME }} | |
path: ${{ env.UPLOAD_DIR }} |