Skip to content

Commit

Permalink
Create build-all.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-german authored Apr 10, 2024
1 parent c8b25c9 commit 8df1e64
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build all
on:
workflow_dispatch:
inputs:
all_workflows:
description: 'Run all build workflows'
required: false
default: 'true'
jobs:
run_all:
runs-on: ubuntu-latest
steps:
- name: Build Linux
uses: ./.github/workflows/build-linux.yml
- name: Build macOS 13 (Intel)
uses: ./.github/workflows/build-macos-13.yml
- name: Build macOS (M1)
uses: ./.github/workflows/build-macos.yml
- name: Build Windows
uses: ./.github/workflows/build-windows.yml

0 comments on commit 8df1e64

Please sign in to comment.