Skip to content

Commit

Permalink
README: Release/Install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
oschrenk committed Dec 8, 2023
1 parent e5c5921 commit c73b61e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand All @@ -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'
```

0 comments on commit c73b61e

Please sign in to comment.