-
Notifications
You must be signed in to change notification settings - Fork 3
38 lines (33 loc) · 1.01 KB
/
Build_Apple.yml
File metadata and controls
38 lines (33 loc) · 1.01 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
name: Build Apple
env:
project: PopEngine
AUTH_TOKEN: ${{ secrets.PACKAGE_KEY_ACTIONS }}
on:
push:
branches:
- master
- '*Test*'
jobs:
Test:
name: Universal
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: "Import Apple-Distriubution NewChromantics Signing Certificate"
if: matrix.config.os == 'macos-latest'
uses: devbotsxyz/xcode-import-certificate@master
with:
certificate-data: ${{ secrets.APPLE_DIST_NEWCHROMANTICS_P12 }}
certificate-passphrase: ${{ secrets.APPLE_DIST_NEWCHROMANTICS_PASSWORD }}
keychain-password: "Hello"
- uses: NewChromantics/PopAction_BuildApple@v1.0.9
with:
BuildScheme: ${{ env.project }}_Universal
project: ${{ env.project }}
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ env.UPLOAD_NAME }}
path: ${{ env.UPLOAD_DIR }}