1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-30 06:18:58 +01:00
MadelineProto/.woodpecker/.deploy-docker.yml
2023-05-28 20:24:03 +02:00

35 lines
846 B
YAML

matrix:
platform:
- linux/arm64
clone:
git:
when:
event:
- tag
image: woodpeckerci/plugin-git:v1.5.0
settings:
depth: 1
lfs: false
recursive: false
tags: true
pipeline:
alias:
image: docker:cli
secrets: [docker_username, docker_password]
commands:
- docker login -u "$docker_username" -p "$docker_password"
- docker pull danog/madelineproto:next-alpine
- docker pull danog/madelineproto:next-debian
- docker pull danog/madelineproto:next
- docker tag danog/madelineproto:next-alpine danog/madelineproto:alpine
- docker tag danog/madelineproto:next-debian danog/madelineproto:debian
- docker tag danog/madelineproto:next danog/madelineproto:latest
when:
event:
- tag
- push
depends_on:
- "build-docker"