mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-30 07:18:57 +01:00
Update
This commit is contained in:
parent
5f4e8ab7e5
commit
cca1182028
@ -3,7 +3,6 @@ matrix:
|
|||||||
- "8.1"
|
- "8.1"
|
||||||
platform:
|
platform:
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/riscv64
|
|
||||||
|
|
||||||
platform: ${platform}
|
platform: ${platform}
|
||||||
|
|
||||||
|
31
.woodpecker/.deploy-docker.yml
Normal file
31
.woodpecker/.deploy-docker.yml
Normal 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
|
@ -56,13 +56,13 @@ for f in alpine debian; do
|
|||||||
|
|
||||||
join_images $f next-$f
|
join_images $f next-$f
|
||||||
|
|
||||||
if [ "$CI_COMMIT_TAG" != "" ]; then
|
if [ "$1" == "deploy" ]; then
|
||||||
join_images $f $f
|
join_images $f $f
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
join_images alpine next
|
join_images alpine next
|
||||||
|
|
||||||
if [ "$CI_COMMIT_TAG" != "" ]; then
|
if [ "$1" == "deploy" ]; then
|
||||||
join_images alpine latest
|
join_images alpine latest
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user