-
Notifications
You must be signed in to change notification settings - Fork 265
46 lines (40 loc) · 1016 Bytes
/
merge.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
name: CI
on:
push:
branches:
- main
- next
env:
BUNDLE_PATH: vendor/bundle
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build-sdk:
runs-on: macos-14-xlarge
steps:
- name: Install Apple Certificate
uses: apple-actions/import-codesign-certs@v1
with:
p12-file-base64: ${{ secrets.CERTIFICATEXC }}
p12-password: ${{ secrets.CERTIFICATEXC_PASS }}
- uses: actions/checkout@v4
- name: Build SDK
run: make build-xcframeworks
build-docs:
runs-on: macos-14-xlarge
steps:
- uses: actions/checkout@v4
- name: Build Docs
run: make build-docs
finished:
runs-on: ubuntu-latest
needs: [build-sdk, build-docs]
steps:
- name: Slack Notification
uses: lazy-actions/slatify@master
if: ${{ failure() }}
with:
type: ${{ job.status }}
job_name: "Merge things busted!"
url: ${{ secrets.SLACK_WEBHOOK }}