build_and_release #21
Workflow file for this run
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
# Thanks to Pamplejuce for getting this on the right track, https://github.com/sudara/pamplejuce/ | |
name: build_and_release | |
on: | |
workflow_dispatch: | |
env: | |
CMAKE_BUILD_PARALLEL_LEVEL: 3 | |
BUILD_TYPE: Release | |
BUILD_DIR: builds/ninja-multi-vcpkg/client | |
jobs: | |
build_and_package: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- name: macOS | |
os: macos-14 | |
pluginval-binary: pluginval.app/Contents/MacOS/pluginval | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Build ui | |
uses: ./.github/actions/build_ui | |
- name: Build and Test | |
uses: ./.github/actions/build_and_test | |
- name: Setup Environment | |
uses: ./.github/actions/setup_environment | |
- name: Pluginval | |
uses: ./.github/actions/pluginval | |
- name: Package MacOS | |
uses: ./.github/actions/package_macos | |
with: | |
DEV_ID_APP_CERT: ${{ secrets.DEV_ID_APP_CERT }} | |
DEV_ID_APP_PASSWORD: ${{ secrets.DEV_ID_APP_PASSWORD }} | |
DEVELOPER_ID_APPLICATION: ${{ secrets.DEVELOPER_ID_APPLICATION }} | |
DEV_ID_INSTALLER_CERT: ${{ secrets.DEV_ID_INSTALLER_CERT }} | |
DEV_ID_INSTALLER_PASSWORD: ${{ secrets.DEV_ID_INSTALLER_PASSWORD }} | |
DEVELOPER_ID_INSTALLER: ${{ secrets.DEVELOPER_ID_INSTALLER }} | |
NOTARIZATION_USERNAME: ${{ secrets.NOTARIZATION_USERNAME }} | |
NOTARIZATION_PASSWORD: ${{ secrets.NOTARIZATION_PASSWORD }} | |
TEAM_ID: ${{ secrets.TEAM_ID }} | |
release: | |
if: contains(github.ref, 'tags/v') | |
runs-on: ubuntu-latest | |
needs: build_and_package | |
permissions: | |
contents: write | |
steps: | |
- name: Get Artifacts | |
uses: actions/download-artifact@v4 | |
- name: Create Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
prerelease: true | |
files: | | |
*/*.pkg |