We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acbd1aa commit 2dfaca5Copy full SHA for 2dfaca5
circle.yml
@@ -2,7 +2,6 @@ version: 2
2
executorType: docker
3
containerInfo:
4
- image: golang:1.8
5
- cmd: ["/bin/bash"]
6
stages:
7
build:
8
workDir: /go/src/github.com/itzg/rcon-cli
@@ -15,7 +14,8 @@ stages:
15
14
go build
16
- type: deploy
17
command: |
18
- tag=$(git describe --exact-match --tags)
+ set +e
+ tag=$(git describe --exact-match --tags 2> /dev/null)
19
if [ $? = 0 ]; then
20
go get github.com/mitchellh/gox
21
go get github.com/tcnksm/ghr
0 commit comments