Files
fediblock-instance/.drone.yml
ale bfaab359eb
Todas las comprobaciones han sido exitosas
continuous-integration/drone Build is passing
initial commit
Signed-off-by: ale <ale@manalejandro.com>
2025-07-18 22:19:35 +02:00

36 líneas
612 B
YAML

kind: pipeline
name: code-build-linux-amd64
type: docker
platform:
os: linux
arch: arm64
steps:
- name: build
image: docker:dind
privileged: true
environment:
USER:
from_secret: user
PASS:
from_secret: pass
REGISTRY:
from_secret: registry
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- docker login -u $USER -p $PASS $REGISTRY
- docker buildx build -t $REGISTRY/fediblock-instance .
- docker push $REGISTRY/fediblock-instance
when:
event:
- push
- tag
volumes:
- name: dockersock
host:
path: /var/run/docker.sock