improvement: add bot ssh deploy key
This commit is contained in:
parent
8bf5c1fec5
commit
d77deb28f0
@ -25,6 +25,27 @@ variables:
|
|||||||
#before_script:
|
#before_script:
|
||||||
# - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
# - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
|
||||||
|
|
||||||
|
version:
|
||||||
|
image: python:3.7-stretch
|
||||||
|
stage: version
|
||||||
|
script:
|
||||||
|
- mkdir -p ~/.ssh && chmod 700 ~/.ssh
|
||||||
|
- ssh-keyscan gitlab.com >> ~/.ssh/known_hosts && chmod 644 ~/.ssh/known_hosts
|
||||||
|
- eval $(ssh-agent -s)
|
||||||
|
- ssh-add <(echo "$SSH_PRIVATE_KEY")
|
||||||
|
- curl -o sbot -L https://github.com/restechnica/semverbot/releases/download/v$SEMVERBOT_VERSION/sbot-linux-amd64
|
||||||
|
- chmod +x sbot
|
||||||
|
- ./sbot predict version -m git-commit
|
||||||
|
- export TAG=$(./sbot predict version)
|
||||||
|
- echo $TAG > version
|
||||||
|
- git tag -a v$TAG -m "ci tagged"
|
||||||
|
- git push origin v$TAG
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- version
|
||||||
|
only:
|
||||||
|
- branches
|
||||||
|
|
||||||
# runs on protected branches and pushes to repo
|
# runs on protected branches and pushes to repo
|
||||||
build-push:
|
build-push:
|
||||||
stage: build
|
stage: build
|
||||||
@ -33,16 +54,7 @@ build-push:
|
|||||||
#script:
|
#script:
|
||||||
# - TAG=$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA sh ./scripts/build-push.sh
|
# - TAG=$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA sh ./scripts/build-push.sh
|
||||||
script:
|
script:
|
||||||
- apk update && apk add git
|
- TAG=$(cat ./version) ./scripts/build-push.sh
|
||||||
- git remote remove origin
|
|
||||||
- git remote add origin https://kamikazechaser:$CI_TOKEN@gitlab.com/$CI_PROJECT_PATH
|
|
||||||
- curl -o sbot -L https://github.com/restechnica/semverbot/releases/download/v$SEMVERBOT_VERSION/sbot-linux-amd64
|
|
||||||
- chmod +x sbot
|
|
||||||
- ./sbot predict version -m git-commit
|
|
||||||
- export TAG=$(./sbot predict version)
|
|
||||||
- TAG=$TAG sh ./scripts/build-push.sh
|
|
||||||
- git tag -a v$TAG -m "ci tagged"
|
|
||||||
- git push origin v$TAG
|
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_REF_PROTECTED == "true"
|
- if: $CI_COMMIT_REF_PROTECTED == "true"
|
||||||
when: always
|
when: always
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
[git]
|
[git]
|
||||||
|
|
||||||
[git.config]
|
[git.config]
|
||||||
email = "sohailsameja@gmail.com"
|
email = "semverbot@grassroots.org"
|
||||||
name = "kamikazechaser"
|
name = "semvervot"
|
||||||
|
|
||||||
[git.tags]
|
[git.tags]
|
||||||
prefix = "v"
|
prefix = "v"
|
||||||
|
Loading…
Reference in New Issue
Block a user