Fix envs
This commit is contained in:
parent
269e9aa5f3
commit
d81e075f58
2 changed files with 7 additions and 4 deletions
|
@ -4,7 +4,7 @@ variables:
|
||||||
GOLANG_VERSION: '1.20'
|
GOLANG_VERSION: '1.20'
|
||||||
NODE_VERSION: '18'
|
NODE_VERSION: '18'
|
||||||
ALPINE_VERSION: '3'
|
ALPINE_VERSION: '3'
|
||||||
DEBIAN_IMAGE: '12'
|
DEBIAN_VERSION: '12'
|
||||||
TELEPORT_VERSION: '13.1.1'
|
TELEPORT_VERSION: '13.1.1'
|
||||||
|
|
||||||
image: docker:$DOCKER_VERSION-git
|
image: docker:$DOCKER_VERSION-git
|
||||||
|
@ -70,7 +70,7 @@ container_scanning:
|
||||||
deploy_release:
|
deploy_release:
|
||||||
rules: !reference [.rules:release, rules]
|
rules: !reference [.rules:release, rules]
|
||||||
stage: deploy
|
stage: deploy
|
||||||
image: debian:${DEBIAN_IMAGE}-slim
|
image: debian:${DEBIAN_VERSION}-slim
|
||||||
id_tokens:
|
id_tokens:
|
||||||
TBOT_GITLAB_JWT:
|
TBOT_GITLAB_JWT:
|
||||||
aud: tp.fhoss.de
|
aud: tp.fhoss.de
|
||||||
|
|
7
dev.sh
7
dev.sh
|
@ -17,6 +17,9 @@ parse_yaml() {
|
||||||
|
|
||||||
eval $(parse_yaml .gitlab-ci.yml)
|
eval $(parse_yaml .gitlab-ci.yml)
|
||||||
|
|
||||||
echo "GOLANG_VERSION="$variables_GOLANG_VERSION >.env
|
echo "DOCKER_VERSION="$variables_DOCKER_VERSION >.env
|
||||||
echo "ALPINE_VERSION="$variables_ALPINE_VERSION >>.env
|
echo "GOLANG_VERSION="$variables_GOLANG_VERSION >>.env
|
||||||
echo "NODE_VERSION="$variables_NODE_VERSION >>.env
|
echo "NODE_VERSION="$variables_NODE_VERSION >>.env
|
||||||
|
echo "ALPINE_VERSION="$variables_ALPINE_VERSION >>.env
|
||||||
|
echo "DEBIAN_VERSION="$variables_DEBIAN_VERSION >>.env
|
||||||
|
echo "TELEPORT_VERSION="$variables_TELEPORT_VERSION >>.env
|
||||||
|
|
Loading…
Reference in a new issue