forked from ethereum/pyrlp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ethereum#112 from fselmo/update-upstream-check-grep
Makefile updates
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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 |
---|---|---|
|
@@ -63,11 +63,13 @@ notes: check-bump | |
towncrier build --yes --version $(UPCOMING_VERSION) | ||
# Before we bump the version, make sure that the towncrier-generated docs will build | ||
make build-docs | ||
git commit -m "Compile release notes" | ||
git commit -m "Compile release notes for v$(UPCOMING_VERSION)" | ||
|
||
release: check-bump clean | ||
# require that upstream is configured for ethereum/<REPO_NAME> | ||
git remote -v | grep "upstream\[email protected]:ethereum/<REPO_NAME>.git (push)\|upstream\thttps://github.com/ethereum/<REPO_NAME> (push)" | ||
@git remote -v | grep \ | ||
-e "upstream\[email protected]:ethereum/<REPO_NAME>.git (push)" \ | ||
-Ee "upstream\thttps://(www.)?github.com/ethereum/<REPO_NAME> \(push\)" | ||
# verify that docs build correctly | ||
./newsfragments/validate_files.py is-empty | ||
make build-docs | ||
|