-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.53 KB
/
Build_Apple.yml
File metadata and controls
54 lines (45 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Build Apple
env:
project: PopCameraDevice
on:
push:
branches:
- master
- '*Test*'
jobs:
Test:
name: Apple frameworks
runs-on: macos-12
steps:
# gr: frameworks new dev certificates
- name: "Import Apple-Distriubution NewChromantics Signing Certificate"
uses: NewChromantics/import-signing-certificate@v1.0.2
with:
certificate-data: ${{ secrets.APPLE_DEV_NEWCHROMANTICS_P12 }}
certificate-passphrase: ${{ secrets.APPLE_DEV_NEWCHROMANTICS_PASSWORD }}
keychain-password: "Hello"
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Build _Osx framework
uses: NewChromantics/PopAction_BuildApple@v1.0.11
with:
BuildScheme: ${{ env.project }}_Osx
project: ${{ env.project }}
- name: Build _Ios framework
uses: NewChromantics/PopAction_BuildApple@v1.0.11
with:
BuildScheme: ${{ env.project }}_Ios
project: ${{ env.project }}
- name: Build _Universal framework
uses: NewChromantics/PopAction_BuildApple@v1.0.11
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 }}