19 lines
466 B
YAML
19 lines
466 B
YAML
|
platform: 'linux/amd64'
|
||
|
branches: ['master']
|
||
|
depends_on:
|
||
|
- 'vc'
|
||
|
|
||
|
pipeline:
|
||
|
build-publish:
|
||
|
image: 'woodpeckerci/plugin-docker-buildx'
|
||
|
secrets: [ docker_username, docker_password ]
|
||
|
settings:
|
||
|
repo: chewingbever/vlang
|
||
|
tag: latest
|
||
|
dockerfile: Dockerfile.builder
|
||
|
platforms: [ linux/arm64/v8, linux/amd64 ]
|
||
|
# The build can run every time, because we should only push when there's
|
||
|
# actual changes
|
||
|
when:
|
||
|
event: push
|