1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-30 07:18:57 +01:00
This commit is contained in:
Daniil Gentili 2023-05-30 21:31:59 +02:00
parent 5f4e8ab7e5
commit cca1182028
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7
3 changed files with 33 additions and 3 deletions

View File

@ -3,7 +3,6 @@ matrix:
- "8.1"
platform:
- linux/arm64
- linux/riscv64
platform: ${platform}

View File

@ -0,0 +1,31 @@
platform: linux/arm64
clone:
git:
when:
event:
- tag
- push
image: woodpeckerci/plugin-git:v1.5.0
settings:
depth: 1
lfs: false
recursive: false
tags: true
pipeline:
variants:
image: docker:cli
secrets: [docker_username, docker_password]
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- apk add bash
- tests/docker.sh deploy
when:
event:
- tag
- push
depends_on:
- build

View File

@ -56,13 +56,13 @@ for f in alpine debian; do
join_images $f next-$f
if [ "$CI_COMMIT_TAG" != "" ]; then
if [ "$1" == "deploy" ]; then
join_images $f $f
fi
done
join_images alpine next
if [ "$CI_COMMIT_TAG" != "" ]; then
if [ "$1" == "deploy" ]; then
join_images alpine latest
fi