diff --git a/.woodpecker/build-image.yml b/.woodpecker/build-image.yml new file mode 100644 index 0000000..1619d9b --- /dev/null +++ b/.woodpecker/build-image.yml @@ -0,0 +1,21 @@ +when: + - event: [push] +steps: + - name: echos + image: alpine + commands: + - echo $CI_REPO + - echo $CI_REPO_REMOTE_ID + - echo $CI_REPO_URL + - echo $CI_REPO_CLONE_URL + - name: build + image: woodpeckerci/plugin-kaniko + settings: + registry: gitea.cazzzer.com + username: + from_secret: registry-username + password: + from_secret: registry-password + repo: ${CI_REPO} + tags: ${CI_COMMIT_BRANCH} + cache: true