mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-23 10:25:24 +00:00
6 lines
318 B
Bash
Executable file
6 lines
318 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ "$TRAVIS_BRANCH" == "master" ]]; then
|
|
gox -os="darwin linux windows" -arch="amd64 386" -output="$(pwd)/dist/{{.Dir}}_{{.OS}}_{{.Arch}}" ./cmd/git-chglog
|
|
ghr --username git-chglog --token $GITHUB_TOKEN --replace `grep 'Version =' ./cmd/git-chglog/version.go | sed -E 's/.*"(.+)"$$/\1/'` dist/
|
|
fi
|