vieter/.woodpecker/.docker.yml

37 lines
781 B
YAML
Raw Normal View History

2022-01-19 22:06:46 +00:00
branches: [main, dev]
platform: 'linux/amd64'
2022-01-30 20:07:37 +00:00
depends_on:
- build
2022-01-13 14:29:43 +00:00
pipeline:
dev:
image: 'woodpeckerci/plugin-docker-buildx'
secrets:
- 'docker_username'
- 'docker_password'
settings:
repo: 'chewingbever/vieter'
tags:
- 'dev'
- ${CI_COMMIT_SHA}
platforms: [ 'linux/arm64/v8', 'linux/amd64' ]
2022-01-23 17:43:52 +00:00
build_args_from_env:
- 'CI_COMMIT_SHA'
when:
event: push
2022-01-15 10:35:29 +00:00
branch: dev
release:
image: 'woodpeckerci/plugin-docker-buildx'
secrets:
- 'docker_username'
- 'docker_password'
settings:
repo: 'chewingbever/vieter'
2022-01-31 22:39:04 +00:00
auto_tag: true
platforms: [ 'linux/arm64/v8', 'linux/amd64' ]
2022-01-27 21:14:08 +00:00
build_args_from_env:
- 'CI_COMMIT_SHA'
when:
event: tag