Skip to content

Remove mac build.

Remove mac build. #92

Workflow file for this run

name: Archicad Add-On Build
on:
push:
branches:
- '*'
tags:
- '*'
jobs:
build:
runs-on: ${{matrix.os-type}}
strategy:
matrix:
os-type: [windows-2019]
configuration: [Debug, RelWithDebInfo]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Get Conan
uses: turtlebrowser/get-conan@v1.2
with:
version: 1.59.0
- name: Setup python
if: runner.os == 'Windows'
run: doskey python3=python
- name: Generate Project
run: python3 archicad-addon/build.py --acVersion 26
- name: Build
run: cmake --build archicad-addon/Build/AC26 --config ${{matrix.configuration}}
- name: Create Release
if: startsWith(github.ref, 'refs/tags/')
uses: ncipollo/release-action@v1
with:
artifacts: archicad-addon/Build/AC25/RelWithDebInfo/TapirAddOn_AC25_Win.apx
draft: true
allowUpdates: true
token: ${{ secrets.GITHUB_TOKEN }}