Release 18.7.1 (#3174) #18
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: 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 }} |