sudovanilla-website/.drone.yml
2024-06-07 21:44:57 -04:00

19 lines
No EOL
486 B
YAML

kind: pipeline
type: exec
name: Build and Push (Docker)
platform:
os: linux
arch: arm64
steps:
- name: Build and Push
environment:
ARK_USERNAME:
from_secret: ARK_USERNAME
ARK_PASSWORD:
from_secret: ARK_PASSWORD
commands:
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
- docker build -t ark.sudovanilla.org/korbs/sudovanilla-website .
- docker push ark.sudovanilla.org/korbs/sudovanilla-website