-
Notifications
You must be signed in to change notification settings - Fork 9
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
d59dd2e
commit f27c5c7
Showing
2 changed files
with
36 additions
and
12 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 |
---|---|---|
@@ -1,8 +1,30 @@ | ||
# Contributing | ||
|
||
## Building locally | ||
|
||
```shell | ||
BUILD_TAG='my-monero-build' ./build.sh | ||
``` | ||
|
||
## Publishing a new release | ||
|
||
1) Checkout a new branch matching the release version to be built | ||
1) Update the `VERSION` file to match the release version to be built | ||
1) Commit and Push | ||
1) Checkout `master` and merge the created version branch | ||
|
||
1) Build | ||
|
||
1) Test | ||
|
||
1) Checkout a new branch and commit | ||
|
||
```shell | ||
git checkout -b "$(< VERSION)" | ||
git commit -m "bump to $(< VERSION)" | ||
``` | ||
|
||
1) Push | ||
|
||
1) Wait for CI to validate builds | ||
|
||
1) Merge to `master` | ||
|
||
1) Push |
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