File tree 1 file changed +9
-6
lines changed
1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -44,21 +44,24 @@ install:
44
44
fi
45
45
46
46
before_build :
47
- - |-
48
- if [ ${APPVEYOR_REPO_TAG} = "true" ]; then
49
- export VERSION=${APPVEYOR_REPO_TAG_NAME}
50
- export TIMESTAMP=$(shell date +%s)
51
- export GIT_COMMIT=$(shell git rev-parse --short HEAD)
52
- fi
53
47
- |-
54
48
if [ ${APPVEYOR_REPO_BRANCH} = "develop" ]; then
55
49
export EQUINOX_CHANNEL=beta
56
50
else
57
51
export EQUINOX_CHANNEL=stable
58
52
fi
53
+ - |-
54
+ if [ ${APPVEYOR_REPO_TAG} = "true" ]; then
55
+ export VERSION=${APPVEYOR_REPO_TAG_NAME}
56
+ fi
59
57
60
58
build_script :
61
59
- make build
60
+ - |-
61
+ if [ ${APPVEYOR_REPO_TAG} = "true" ]; then
62
+ export TIMESTAMP=$(shell date +%s)
63
+ export GIT_COMMIT=$(shell git rev-parse --short HEAD)
64
+ fi
62
65
- |-
63
66
if [ ${APPVEYOR_REPO_TAG} = "true" ]; then
64
67
CGO=1 equinox release \
You can’t perform that action at this time.
0 commit comments