This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

ci(autorelease): fix bump tool installation [ci release]

+3 -2
+3 -2
.gitlab-ci.yml
··· 85 85 rules: 86 86 - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_TITLE =~ /\[ci release]/ 87 87 script: 88 - - go get github.com/guilhem/bump@v0.2.3 88 + - mkdir -p $HOME/go 89 + - GOPATH=$HOME/go go get github.com/guilhem/bump@v0.2.3 89 90 - git fetch --tags 90 - - bump minor 91 + - $HOME/go/bin/bump minor 91 92 - git push --tags 92 93 93 94