feat: add release job
This commit is contained in:
parent
57fdce06bd
commit
bc087a5a2d
1 changed files with 21 additions and 0 deletions
21
.woodpecker/release.yml
Normal file
21
.woodpecker/release.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
when:
|
||||
- event: push
|
||||
branch: main
|
||||
|
||||
depends_on:
|
||||
- test
|
||||
- playwright
|
||||
|
||||
steps:
|
||||
- name: build-docker-image
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
settings:
|
||||
repo: git.keks.cloud/${CI_REPO_OWNER}/miniauth
|
||||
dockerfile: Dockerfile
|
||||
platforms: linux/amd64,linux/arm64,linux/arm64/v8
|
||||
tag: latest
|
||||
registry: git.keks.cloud
|
||||
username: ${CI_REPO_OWNER}
|
||||
password:
|
||||
from_secret: docker_password
|
||||
Reference in a new issue