-
Notifications
You must be signed in to change notification settings - Fork 16
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
Showing
4 changed files
with
36 additions
and
38 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ main | |
.DS_Store | ||
shelby | ||
|
||
.vscode/ | ||
.vscode/dist/ | ||
dist/ |
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,48 +1,45 @@ | ||
# This is an example goreleaser.yaml file with some sane defaults. | ||
# This is an example .goreleaser.yml file with some sane defaults. | ||
# Make sure to check the documentation at http://goreleaser.com | ||
before: | ||
hooks: | ||
# you may remove this if you don't use vgo | ||
# You may remove this if you don't use go modules. | ||
- go mod tidy | ||
# you may remove this if you don't need go generate | ||
- go get -v | ||
- go get -v | ||
builds: | ||
- | ||
|
||
env: | ||
- CGO_ENABLED=0 | ||
ldflags: | ||
- -s -w | ||
goos: | ||
- darwin | ||
- linux | ||
goarch: | ||
- amd64 | ||
- env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
- arm | ||
archives: | ||
- replacements: | ||
darwin: Darwin | ||
linux: Linux | ||
amd64: x86_64 | ||
- replacements: | ||
darwin: Darwin | ||
linux: Linux | ||
checksum: | ||
name_template: 'checksums.txt' | ||
name_template: "checksums.txt" | ||
snapshot: | ||
name_template: "{{ .Tag }}" | ||
name_template: "{{ .Tag }}-next" | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' | ||
- "^docs:" | ||
- "^test:" | ||
release: | ||
github: | ||
owner: athul | ||
name: shelby | ||
brews: | ||
- name: shelby | ||
github: | ||
owner: athul | ||
name: homebrew-tap | ||
folder: Formula | ||
homepage: "https://github.com/athul/shelby" | ||
description: "A fast and minimal Shell Prompt in Go with 🦋" | ||
install: bin.install "shelby" | ||
- name: shelby | ||
tap: | ||
owner: athul | ||
name: homebrew-tap | ||
folder: Formula | ||
homepage: "https://github.com/athul/shelby" | ||
description: "A fast and minimal Shell Prompt in Go" | ||
install: bin.install "shelby"% |
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,8 @@ | ||
module github.com/athul/shelby | ||
|
||
go 1.13 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/talal/go-bits v0.0.0-20190324183132-a7ebf0762b92 | ||
github.com/urfave/cli v1.22.2 | ||
github.com/talal/go-bits v0.0.0-20200204154716-071e9f3e66e1 | ||
github.com/urfave/cli v1.22.5 | ||
) |
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