17 lines
456 B
YAML
17 lines
456 B
YAML
---
|
|
# Only allow releases on the main branch (for 3k)
|
|
# releases for 2k are published manually.
|
|
branches:
|
|
- name: main
|
|
|
|
plugins:
|
|
- '@semantic-release/commit-analyzer'
|
|
- '@semantic-release/git'
|
|
- - "@semantic-release/exec"
|
|
- publishCmd: |
|
|
goreleaser release --clean --timeout 60m
|
|
VERSION=${nextRelease.version} ./var/windows/build-msi.sh
|
|
./var/windows/upload-msi-release.sh ${nextRelease.gitTag}
|
|
|
|
tagFormat: '${version}'
|