No need for Gitlab anymore

This commit is contained in:
Stefan Bethke 2024-07-30 21:01:50 +02:00
parent 6a101580f6
commit 6ee63ff277

View file

@ -1,30 +0,0 @@
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- site
- image
build-site:
stage: site
image: docker.io/hugomods/hugo:latest
script:
- hugo
artifacts:
paths:
- public
expire_in: 1 hour
build-image:
stage: image
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
- mkdir -p /kaniko/.docker
- echo "{\"auths\":{\"${CI_REGISTRY}\":{\"auth\":\"$(printf "%s:%s" "${CI_REGISTRY_USER}" "${CI_REGISTRY_PASSWORD}" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
- >-
/kaniko/executor
--context "${CI_PROJECT_DIR}"
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
--destination "${CI_REGISTRY_IMAGE}/hackertours:latest"