File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,10 @@ before_deploy:
24
24
- go get github.com/mitchellh/gox
25
25
- mkdir releases
26
26
- gox -osarch="!netbsd/arm !openbsd/386 !openbsd/amd64 !netbsd/386 !netbsd/amd64" -output="releases/{{.Dir}}_`git describe --tags --abbrev=0`_{{.OS}}_{{.Arch}}/{{.Dir}}"
27
- - find releases -maxdepth 1 -mindepth 1 -type d -exec tar -cvzf {}.tar.gz -C {} docker-machine-driver-hetzner \;
27
+ # Below tar command will log an error because either ...-hetzner or
28
+ # ...-hetzner.exe are missing. The process continues, though and the
29
+ # created tarballs are fine.
30
+ - find releases -maxdepth 1 -mindepth 1 -type d -exec tar -cvzf {}.tar.gz -C {} docker-machine-driver-hetzner docker-machine-driver-hetzner.exe \;
28
31
29
32
deploy :
30
33
# See https://docs.travis-ci.com/user/deployment/releases/
You can’t perform that action at this time.
0 commit comments