mkdocs-material/.drone.yml
Struchkov Mark d71451d910
All checks were successful
continuous-integration/drone/push Build is passing
drone
2023-02-19 04:55:31 +03:00

46 lines
1.0 KiB
YAML

---
kind: pipeline
type: docker
name: docker-with-buildx
steps:
- name: docker build an publish
image: upagge/docker-buildx:latest
environment:
DOCKER_REGISTRY_TOKEN:
from_secret: DOCKER_REGISTRY_TOKEN
DOCKER_IMAGE_NAME:
from_secret: DOCKER_IMAGE_NAME
DOCKER_REGISTRY_USER:
from_secret: DOCKER_REGISTRY_USER
volumes:
- name: dockersock
path: /var/run
commands:
- sleep 15
- echo "$DOCKER_REGISTRY_TOKEN" | docker login docker.io --username $DOCKER_REGISTRY_USER --password-stdin
- docker buildx create --use
- docker buildx build --push --platform linux/amd64,linux/arm64/v8 -t "$DOCKER_IMAGE_NAME:latest" .
trigger:
branch:
- master
services:
- name: docker
image: docker:20.10.22-dind-alpine3.17
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}
---
kind: signature
hmac: 0717c568fc42b967d184d9344636d3a456e9aa6fa00e591a0b4c68fd937c2307
...