Skip to content

Commit

Permalink
Fix workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
grunt-lucas committed Oct 22, 2024
1 parent 3bd9972 commit 5019c91
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/linux_amd64_clang.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Linux AMD64 Clang Reusable Build Workflow

on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build-linux-amd64-clang:
name: Build on linux-amd64 with clang
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/linux_amd64_gcc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Linux AMD64 GCC Reusable Build Workflow

on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build-linux-amd64-gcc:
name: Build on linux-amd64 with gcc
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/macos_arm64_clang.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: macOS ARM64 Clang Reusable Build Workflow

on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build-macos-arm64-clang:
name: Build on macos-arm64 with clang
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/macos_arm64_gcc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: macOS ARM64 GCC Reusable Build Workflow

on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build-macos-arm64-gcc:
name: Build on macos-arm64 with gcc
Expand Down

0 comments on commit 5019c91

Please sign in to comment.