Skip to content

Commit f5c58c8

Browse files
authored
Devbyray/issue15 (#17)
* Fix release action Fixes #15 * feat: add build and release workflows for macOS with version handling * feat: add should_build input to control build execution in workflow
1 parent e03ab27 commit f5c58c8

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,15 @@ on:
2525
required: false
2626
type: string
2727
description: "Version override (uses package.json if not provided)"
28+
should_build:
29+
required: false
30+
type: boolean
31+
default: true
32+
description: "Whether to build the application"
2833

2934
jobs:
3035
build-macos:
3136
runs-on: macos-latest
32-
if: inputs.should_build != false
3337
steps:
3438
- name: Checkout repository
3539
uses: actions/checkout@v4

0 commit comments

Comments
 (0)