mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-05 23:41:44 +00:00
22 lines
525 B
YAML
22 lines
525 B
YAML
name: Dispatch Build IfcOpenShell
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
trigger-workflows:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
workflow:
|
|
- 'Build IfcOpenShell Linux'
|
|
- 'Build IfcOpenShell Linux ARM'
|
|
- 'Build IfcOpenShell OSX'
|
|
- 'Build IfcOpenShell WASM / Pyodide'
|
|
- 'Build IfcOpenShell Windows'
|
|
steps:
|
|
- name: Trigger binary build workflows
|
|
uses: benc-uk/workflow-dispatch@v1
|
|
with:
|
|
workflow: ${{ matrix.workflow }}
|