-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e58f07
commit b759e5f
Showing
2 changed files
with
100 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
release = { | ||
# the commit hash that the release process should target | ||
# this will always be behind what ends up being deployed | ||
# the release process needs to add some commits for changelog etc. | ||
commit = "0095ae8451d954ca4fef76aac76c4aa40add0dad"; | ||
|
||
# the semver for prev and current releases | ||
# the previous version will be scanned/bumped by release scripts | ||
# the current version is what the release scripts bump *to* | ||
version = { | ||
current = "0.0.2"; | ||
previous = "0.0.1-alpha2"; | ||
}; | ||
|
||
github = { | ||
# markdown to inject into github releases | ||
# there is some basic string substitution {{ xxx }} | ||
# - {{ changelog }} will inject the changelog as at the target commit | ||
template = '' | ||
{{ changelog }} | ||
# Installation | ||
Use Holonix to work with this repository. | ||
See: | ||
- https://github.com/holochain/holonix | ||
- https://nixos.org/ | ||
''; | ||
|
||
# owner of the github repository that release are deployed to | ||
owner = "holochain"; | ||
|
||
# repository name on github that release are deployed to | ||
repo = "holochain-serialization"; | ||
|
||
# canonical local upstream name as per `git remote -v` | ||
upstream = "origin"; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters