mirror of
https://github.com/kopia/kopia.git
synced 2026-03-27 02:21:59 -04:00
fix(ci): don't auto-submit HomeBrew pull requests for testing releases (#2951)
Fixes #2928
This commit is contained in:
4
.github/workflows/make.yml
vendored
4
.github/workflows/make.yml
vendored
@@ -189,7 +189,9 @@ jobs:
|
||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Bump Homebrew formula
|
||||
uses: dawidd6/action-homebrew-bump-formula@v3
|
||||
if: github.ref_type == 'tag'
|
||||
# only bump formula for tags which don't contain '-'
|
||||
# this excludes vx.y.z-rc1
|
||||
if: github.ref_type == 'tag' && !contains(github.ref_name, '-')
|
||||
with:
|
||||
token: ${{ secrets.HOMEBREW_PUSH_TOKEN }}
|
||||
formula: kopia
|
||||
|
||||
Reference in New Issue
Block a user