go-todos-app/.woodpecker/publish-tag.yaml
Michael Thomson 8efc682844
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/dryrun Pipeline was successful
ci/woodpecker/push/publish-tag Pipeline was successful
ci/woodpecker/push/publish-latest Pipeline failed
fix registry url
2024-06-08 23:26:44 -04:00

19 lines
397 B
YAML

steps:
publish-tag:
image: woodpeckerci/plugin-kaniko
settings:
repo: gitea.michaelthomson.dev/${CI_REPO_OWNER}/go-todos-app
registry: gitea.michaelthomson.dev
tags: ${CI_COMMIT_TAG}
username: ${CI_REPO_OWNER}
password:
from_secret: gitea_token
when:
event: tag
ref: refs/tags/v*
branch: main
depends_on:
- build
- dryrun