first commit

This commit is contained in:
2023-08-19 21:25:33 +12:00
commit 951e01caf1
4 changed files with 322 additions and 0 deletions

25
.woodpecker/build.yaml Normal file
View File

@@ -0,0 +1,25 @@
variables:
- &platforms 'linux/arm64/v8,linux/amd64'
- &docker_creds
username: ${CI_REPO_OWNER}
password:
from_secret: docker_password
steps:
publish-depot-plugin:
image: woodpeckerci/plugin-docker-buildx
pull: true
group: docker
settings:
<<: *docker_creds
token:
from_secret: depot_token
repo: ${CI_REPO_OWNER}/ansible-molecule
dockerfile: Dockerfile
platforms: *platforms
tag: latest
when:
branch: ${CI_REPO_DEFAULT_BRANCH}
event:
- push
- manual