mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 02:11:01 +00:00
Only publish to latest on tags (#505)
* Only publish to latest on tags * Update docs Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
parent
900b4b09ad
commit
62557ffeff
2 changed files with 8 additions and 11 deletions
|
@ -43,8 +43,7 @@ pipeline:
|
|||
settings:
|
||||
repo: woodpeckerci/woodpecker-server
|
||||
dockerfile: docker/Dockerfile.server
|
||||
# TODO: only release as next after 0.15.0 got released
|
||||
tag: [next, latest]
|
||||
tag: next
|
||||
when:
|
||||
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||
event: push
|
||||
|
@ -56,8 +55,7 @@ pipeline:
|
|||
settings:
|
||||
repo: woodpeckerci/woodpecker-server
|
||||
dockerfile: docker/Dockerfile.server.alpine
|
||||
# TODO: only release as next-alpine after 0.15.0 got released
|
||||
tag: [next-alpine, latest-alpine]
|
||||
tag: next-alpine
|
||||
when:
|
||||
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||
event: push
|
||||
|
@ -82,8 +80,7 @@ pipeline:
|
|||
repo: woodpeckerci/woodpecker-agent
|
||||
dockerfile: docker/Dockerfile.agent.multiarch
|
||||
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le,windows/amd64,darwin/amd64,darwin/arm64
|
||||
# TODO: only release as next after 0.15.0 got released
|
||||
tag: [next, latest]
|
||||
tag: next
|
||||
when:
|
||||
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||
event: push
|
||||
|
@ -96,8 +93,7 @@ pipeline:
|
|||
repo: woodpeckerci/woodpecker-agent
|
||||
dockerfile: docker/Dockerfile.agent.alpine.multiarch
|
||||
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64,linux/ppc64le
|
||||
# TODO: only release as next-alpine after 0.15.0 got released
|
||||
tag: [next-alpine, latest-alpine]
|
||||
tag: next-alpine
|
||||
when:
|
||||
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||
event: push
|
||||
|
|
|
@ -7,9 +7,10 @@
|
|||
## Docker images
|
||||
|
||||
Image variants:
|
||||
* The `next` images are based on the current master branch
|
||||
* The `latest` is same as next (will change after v0.15.0 release to be latest stable release)
|
||||
* The `x.x.x` version images are stable releases
|
||||
* The `latest` image is the latest stable release
|
||||
* The `vX.X.X` version images are stable releases
|
||||
* The `vX.X` images are based on version specific release branche, they have the latest bugfixes backported
|
||||
* The `next` images are based on the current master branch and should not be used for production environments
|
||||
|
||||
``` bash
|
||||
# server
|
||||
|
|
Loading…
Reference in a new issue