sudovanilla-website/.drone.yml

19 lines
486 B
YAML
Raw Normal View History

2024-06-07 21:43:43 -04:00
kind: pipeline
type: exec
name: Build and Push (Docker)
platform:
os: linux
arch: arm64
steps:
2024-06-07 21:44:57 -04:00
- name: Build and Push
2024-06-07 21:43:43 -04:00
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