Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Yevhen Terentiev committed Nov 26, 2019
1 parent ba7a3f9 commit da6a726
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- name: Build
run: |
GOOS=darwin GOARCH=amd64 go build -o bin/wilson_darwin_amd64 -v .
GOOS=linux GOARCH=amd64 go build -o bin/wilson_linux_amd64 -v .
GOOS=darwin GOARCH=amd64 go build -o bin/wilson_darwin_amd64 github.com/trntv/wilson/cmd/wilson
GOOS=linux GOARCH=amd64 go build -o bin/wilson_linux_amd64 github.com/trntv/wilson/cmd/wilson
tar cvf - bin/wilson_darwin_amd64 | gzip -n > bin/wilson-darwin-amd64.tar.gz
tar cvf - bin/wilson_linux_amd64 | gzip -n > bin/wilson-linux-amd64.tar.gz
sha256sum bin/wilson-darwin-amd64.tar.gz >> bin/checksums.txt
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ WIF*
## Autocomplete
### Bash
Add to ~/.bashrc or ~/.profile
``
```
. <(wilson completion bash)
``
```

### ZSH
Add to ~/.zshrc
``
```
. <(wilson completion zsh)
``
```

## Why "Wilson"?
https://en.wikipedia.org/wiki/Cast_Away#Wilson_the_volleyball 🏐
Expand Down

0 comments on commit da6a726

Please sign in to comment.