added basic woodpecker config
This commit is contained in:
parent
ee0358dcf5
commit
bf371e76c5
2 changed files with 28 additions and 0 deletions
|
@ -20,4 +20,8 @@ repos:
|
|||
rev: '2.7.2'
|
||||
hooks:
|
||||
- id: editorconfig-checker
|
||||
- repo: https://git.schmidl.dev/schtobia/woodpecker-lint
|
||||
rev: 1.0.0
|
||||
hooks:
|
||||
- id: woodpecker-lint
|
||||
...
|
||||
|
|
24
.woodpecker.yml
Normal file
24
.woodpecker.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
# SPDX-FileCopyrightText: 2023 Tobias Schmidl
|
||||
#
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
---
|
||||
steps:
|
||||
docker-build:
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
settings:
|
||||
repo: git.schmidl.dev/${CI-REPO_OWNER}/buildimage
|
||||
registry: git.schmidl.dev
|
||||
dry_run: true
|
||||
output: type=oci,dest=${CI_REPO_OWNER}-buildimage.tar
|
||||
publish-next-agent:
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
secrets: [docker_username, docker_password]
|
||||
settings:
|
||||
repo: git.schmidl.dev/${CI-REPO_OWNER}/buildimage
|
||||
dockerfile: dockerfile
|
||||
platforms: linux/amd64,linux/arm64/v8
|
||||
when:
|
||||
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||
event: push
|
||||
...
|
Loading…
Reference in a new issue