feat: publish multi-arch docker images #10
1 changed files with 21 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
||||||
pipeline:
|
steps:
|
||||||
backend:
|
backend:
|
||||||
image: rust
|
image: rust
|
||||||
environment:
|
environment:
|
||||||
|
@ -12,22 +12,32 @@ pipeline:
|
||||||
- make
|
- make
|
||||||
- make test
|
- make test
|
||||||
|
|
||||||
build_docker_img:
|
build-docker-img:
|
||||||
image: plugins/docker
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
when:
|
when:
|
||||||
event: [pull_request]
|
event: [pull_request]
|
||||||
|
secrets: [docker_token]
|
||||||
settings:
|
settings:
|
||||||
dry_run: true
|
dry_run: true
|
||||||
repo: realaravinth/libmedium
|
repo: realaravinth/libmedium
|
||||||
tags: latest
|
|
||||||
|
|
||||||
build_and_publish_docker_img:
|
|
||||||
image: plugins/docker
|
|
||||||
when:
|
|
||||||
event: [push, tag, deployment]
|
|
||||||
settings:
|
|
||||||
username: realaravinth
|
username: realaravinth
|
||||||
password:
|
password:
|
||||||
from_secret: DOCKER_TOKEN
|
from_secret: DOCKER_TOKEN
|
||||||
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
|
tag: latest
|
||||||
|
|
||||||
|
|
||||||
|
publish-docker-img:
|
||||||
|
image: woodpeckerci/plugin-docker-buildx
|
||||||
|
when:
|
||||||
|
event: [push, tag, deployment]
|
||||||
|
branch: master
|
||||||
|
secrets: [docker_token]
|
||||||
|
settings:
|
||||||
|
dry_run: true
|
||||||
repo: realaravinth/libmedium
|
repo: realaravinth/libmedium
|
||||||
tags: latest
|
username: realaravinth
|
||||||
|
password:
|
||||||
|
from_secret: DOCKER_TOKEN
|
||||||
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
|
tag: latest
|
||||||
|
|
Loading…
Reference in a new issue