We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66dc230 commit b5f789bCopy full SHA for b5f789b
.travis.yml
@@ -55,11 +55,26 @@ script:
55
go run main.go get groups
56
go run main.go get projects
57
travis_wait 30 make coverage
58
+ - bash <(curl -s https://codecov.io/bash) # Set CODECOV_TOKEN in your environment variables.
59
60
after_script:
61
- sleep 1
62
-after_success:
63
- - bash <(curl -s https://codecov.io/bash) # Set CODECOV_TOKEN in your environment variables.
+before_deploy:
64
+ - VERSION=${TRAVIS_TAG} make all
65
+
66
+deploy:
67
+ provider: releases
68
+ api_key: $GITHUB_OAUTH_TOKEN
69
+ file:
70
+ - ./bin/gitlabctl-darwin-amd64
71
+ - ./bin/gitlabctl-linux-amd64
72
+ - ./bin/gitlabctl-windows-amd64.exe
73
+ - ./bin/shasum256.txt
74
+ skip_cleanup: true
75
+ on:
76
+ branch: master
77
+ tags: true
78
79
80
0 commit comments