Skip to content

Commit 50f61cf

Browse files
committed
build: add brew condition
1 parent e217dc6 commit 50f61cf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/publish-release-packages.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,16 @@ on:
1313
required: true
1414
type: string
1515
description: "The github release which will be published"
16+
do_brew:
17+
required: false
18+
default: true
19+
type: boolean
20+
description: "Publish to brew repository"
1621

1722
jobs:
1823
publish-brew:
1924
runs-on: ubuntu-latest
25+
if: ${{ inputs.do_brew }}
2026
steps:
2127
- name: Checkout source code
2228
uses: actions/checkout@v3

0 commit comments

Comments
 (0)