limit git tasks to main branch
This commit is contained in:
parent
1ec32bc0d9
commit
da4a2ce7b0
1 changed files with 6 additions and 0 deletions
|
@ -5,13 +5,19 @@ vars:
|
|||
sh: svu next --strip-prefix
|
||||
VERSIONFILE: version.txt
|
||||
COMMITMSG: "chore: bump version to v{{.RELEASE}}"
|
||||
CURRENTBRANCH:
|
||||
sh: git branch --show-current
|
||||
|
||||
tasks:
|
||||
release:tag:
|
||||
preconditions:
|
||||
- test {{.CURRENTBRANCH}} == "main"
|
||||
cmds:
|
||||
- git tag v{{.RELEASE}}
|
||||
|
||||
release:file:
|
||||
preconditions:
|
||||
- test {{.CURRENTBRANCH}} == "main"
|
||||
cmds:
|
||||
- echo {{.RELEASE}} >{{.VERSIONFILE}}
|
||||
- git add {{.VERSIONFILE}}
|
||||
|
|
Loading…
Reference in a new issue