Update Catalan translation (thanks Ricard Aós). #291
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: "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 |