Compare commits
2 commits
6708c43cea
...
10f41ccebf
Author | SHA1 | Date | |
---|---|---|---|
10f41ccebf | |||
e195eaba95 |
1 changed files with 9 additions and 9 deletions
12
Taskfile.yml
12
Taskfile.yml
|
@ -6,10 +6,6 @@
|
|||
|
||||
version: '3'
|
||||
|
||||
tasks:
|
||||
|
||||
release:
|
||||
desc: Create and publish an new release
|
||||
vars:
|
||||
RELEASE:
|
||||
sh: svu next
|
||||
|
@ -17,10 +13,14 @@ tasks:
|
|||
sh: git branch --show-current
|
||||
COMMIT:
|
||||
sh: git rev-parse --short --verify {{.BRANCH}}
|
||||
|
||||
tasks:
|
||||
|
||||
release:
|
||||
desc: Create and publish an new release
|
||||
prompt: Create new release {{.RELEASE}} from {{.COMMIT}}@{{.BRANCH}}?
|
||||
preconditions:
|
||||
- sh: test "{{.BRANCH}}" == "main"
|
||||
msg: "You must be on the main branch to release"
|
||||
prompt: Create new release {{.RELEASE}} from {{.COMMIT}}@{{.BRANCH}}?
|
||||
cmds:
|
||||
- git tag {{.RELEASE}}
|
||||
- git push
|
||||
|
|
Loading…
Reference in a new issue