-
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.
README: Release/Install instructions
- Loading branch information
Showing
1 changed file
with
17 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -43,6 +43,13 @@ cd nightshift.swift | |
task install | ||
``` | ||
|
||
**Via homebrew** | ||
|
||
``` | ||
brew tap oschrenk/made [email protected]:oschrenk/homebrew-made | ||
brew install oschrenk/made/nightshift | ||
``` | ||
|
||
## Development | ||
|
||
- `task build` **Build** | ||
|
@@ -51,7 +58,16 @@ task install | |
|
||
## Release | ||
|
||
1. produce artifact in `./.build/release/nightshift` | ||
2. Export version number, prefix with `v` | ||
3. Create Tag | ||
4. Push Tag | ||
5. Create release on github | ||
|
||
``` | ||
task release | ||
# produces artifact in ./.build/release/nightshift | ||
export VERSION=v0.1 | ||
git tag "$VERSION" | ||
git push origin "$VERSION" | ||
gh release create "$VERSION" '.build/release/nightshift' | ||
``` |