me-site/.drone.yml
2022-09-09 14:42:51 +00:00

42 lines
705 B
YAML

kind: pipeline
type: docker
name: deploy-x86
platform:
arch: amd64
steps:
- name: deploy
image: plugins/docker
settings:
registry: git.hydrar.de
username:
from_secret: registry_user
password:
from_secret: registry_password
repo: git.hydrar.de/jmarya/me-site
tags:
- latest
- latest-amd64
---
kind: pipeline
type: docker
name: deploy-arm
platform:
arch: arm64
steps:
- name: deploy
image: plugins/docker
settings:
registry: git.hydrar.de
username:
from_secret: registry_user
password:
from_secret: registry_password
repo: git.hydrar.de/jmarya/me-site
tags:
- latest
- latest-arm64