18 lines
369 B
YAML
18 lines
369 B
YAML
steps:
|
|
publish-latest:
|
|
image: woodpeckerci/plugin-kaniko
|
|
settings:
|
|
repo: gitea.michaelthomson.dev/${CI_REPO_OWNER}/go-todos-app
|
|
registry: gitea.michaelthomson.dev
|
|
tags: latest
|
|
username: ${CI_REPO_OWNER}
|
|
password:
|
|
from_secret: gitea_token
|
|
when:
|
|
branch: main
|
|
event: [push]
|
|
|
|
depends_on:
|
|
- build
|
|
- dryrun
|