ci-images/.drone.yml
Peter Kurfer 2dd66ab68e
All checks were successful
continuous-integration/drone/push Build is passing
feat(ci): move to Drone CI
2023-02-22 21:46:27 +01:00

21 lines
No EOL
602 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: go-ci
image: gcr.io/kaniko-project/executor:debug
network_mode: host
commands:
- >
echo "{\"auths\": {\"https://code.icb4dc0.de\": {\"auth\" : \"$(printf '%s:%s' $$GITEA_USER $$GITEA_TOKEN | base64)\" }}}" > /kaniko/.docker/config.json
- /kaniko/executor --destination "$${IMAGE_REPO}:$${IMAGE_TAG}" --context "$${BUILD_CONTEXT}"
environment:
GITEA_USER: prskr
GITEA_TOKEN:
from_secret: gitea_token
IMAGE_REPO: code.icb4dc0.de/inetmock/ci-images/go-ci
IMAGE_TAG: latest
BUILD_CONTEXT: go-ci/