-
-
Notifications
You must be signed in to change notification settings - Fork 76
55 lines (45 loc) · 1.22 KB
/
continuous-build-macos.yml
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
55
name: "Continuous build (macOS)"
on:
push:
branches:
- '*'
tags-ignore:
- 'continuous*'
jobs:
build:
strategy:
matrix:
include:
- os: macos-12
target: 10.9
- os: macos-12
target: 11.0
runs-on: ${{ matrix.os }}
steps:
- name: Install dependencies
run: |
brew install automake nasm yasm
- name: Import certificates
uses: apple-actions/import-codesign-certs@v3
with:
p12-file-base64: ${{ secrets.CERTIFICATES }}
p12-password: ${{ secrets.CERTIFICATES_PASSWORD }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Checkout smooth
uses: actions/checkout@v4
with:
repository: enzo1982/smooth
path: smooth
- name: Checkout BoCA
uses: actions/checkout@v4
with:
repository: enzo1982/BoCA
path: boca
- name: Build DMG
env:
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.target }}
NOTARIZATION_PASSWORD: ${{ secrets.NOTARIZATION_PASSWORD }}
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
run: |
.github/workflows/tools/build-macos