vieter/.woodpecker/.publish.yml

35 lines
760 B
YAML
Raw Normal View History

2022-01-19 23:06:46 +01:00
branches: [main, dev]
platform: linux/amd64
2022-01-13 15:29:43 +01:00
pipeline:
dev:
image: woodpeckerci/plugin-docker-buildx
secrets: [ docker_username, docker_password ]
settings:
2022-01-23 10:53:58 +01:00
dockerfile: Dockerfile.ci
repo: chewingbever/vieter
tag: dev
2022-01-15 15:49:19 +01:00
platforms: [ linux/arm/v7, linux/arm64/v8, linux/amd64 ]
2022-01-23 18:43:52 +01:00
build_args_from_env:
2022-01-23 13:58:29 +01:00
- CI_COMMIT_SHA
when:
event: push
2022-01-15 11:35:29 +01:00
branch: dev
release:
2022-01-15 11:35:29 +01:00
image: woodpeckerci/plugin-docker-buildx
secrets: [ docker_username, docker_password ]
settings:
repo: chewingbever/vieter
tag:
- latest
- $CI_COMMIT_TAG
2022-01-15 15:49:19 +01:00
platforms: [ linux/arm/v7, linux/arm64/v8, linux/amd64 ]
when:
event: tag
branch: main
2022-01-14 20:38:36 +01:00
2022-01-15 11:35:29 +01:00
depends_on:
- builder
2022-01-23 10:56:22 +01:00
- build