This repository has no description
0

Configure Feed

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

ci: change bump tool again... [ci release]

+3 -5
+3 -5
.gitlab-ci.yml
··· 85 85 rules: 86 86 - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_TITLE =~ /\[ci release]/ 87 87 script: 88 - - mkdir -p $HOME/go 89 - - GOPATH=$HOME/go go install github.com/guilhem/bump@v0.2.3 90 - - ls $HOME/go 91 - - ls $HOME/go/bin 88 + - wget https://github.com/watawuwu/bump/releases/download/v0.4.3/bump-v0.4.3-x86_64-unknown-linux-gnu.tar.gz -O - | tar -xz 92 89 - git fetch --tags 93 - - $HOME/go/bin/bump minor 90 + - latest_tag=$(git tag -l --sort=-v:refname | head -n 1) 91 + - git tag $(./bump minor $latest_tag) 94 92 - git push --tags 95 93 96 94