-
Notifications
You must be signed in to change notification settings - Fork 3
/
.releaserc.yml
executable file
·31 lines (25 loc) · 1.02 KB
/
.releaserc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
branches:
- main
plugins:
- - "@semantic-release/commit-analyzer"
- preset: conventionalcommits
- - "@semantic-release/release-notes-generator"
- preset: "conventionalcommits"
- - "@semantic-release/changelog"
- changelogTitle: "# Changelog\n\nAll notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines."
- - "@semantic-release/exec"
- prepareCmd: "echo ${nextRelease.version} > VERSION"
- - "@semantic-release/exec"
- prepareCmd: |
cd packages/parsec && clojure -T:build uber
ls -lah target
cd ../..
cd packages/parsec-api && clojure -T:build uber
ls -lah target
- - "@semantic-release/git"
- message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
assets:
- CHANGELOG.md
- packages/parsec/target/parsec-*-standalone.jar
- packages/parsec-api/target/parsec-api-*-standalone.jar
- "@semantic-release/github"