Compare commits

..

No commits in common. "f4bd642cfdef4702006cc459203a8df9a819f9fd" and "0ddd238012cfdd82ec0b3e6d242bfb3e9845f933" have entirely different histories.

2 changed files with 2 additions and 12 deletions

View File

@ -1,6 +1,6 @@
kind: pipeline kind: pipeline
type: kubernetes type: kubernetes
name: tag, build Docker image and create release name: tag and create release
steps: steps:
- name: bump tag - name: bump tag
@ -21,16 +21,6 @@ steps:
GIT_PASSWORD: GIT_PASSWORD:
from_secret: git_password from_secret: git_password
failure: ignore failure: ignore
- name: publish Docker image
image: plugins/docker
settings:
registry: gitea.dikurium.ch
repo: gitea.dikurium.ch/innopeak/drone-gitea-release
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
- image: gitea.dikurium.ch/innopeak/drone-gitea-release - image: gitea.dikurium.ch/innopeak/drone-gitea-release
name: create release name: create release
settings: settings:

View File

@ -29,7 +29,7 @@ type Args struct {
Owner string `envconfig:"PLUGIN_OWNER"` Owner string `envconfig:"PLUGIN_OWNER"`
Repo string `envconfig:"PLUGIN_REPO"` Repo string `envconfig:"PLUGIN_REPO"`
TitleFormat string `envconfig:"PLUGIN_TITLE_FORMAT"` TitleFormat string `envconfig:"PLUGIN_TITLE_FORMAT"`
UseLatestGitTag bool `envconfig:"PLUGIN_USE_LATEST_GIT_TAG" default: "true"` UseLatestGitTag bool `envconfig:"PLUGIN_USE_LATEST_GIT_TAG"`
TagFile string `envconfig:"PLUGIN_TAG_FILE"` TagFile string `envconfig:"PLUGIN_TAG_FILE"`
TagRegex string `envconfig:"PLUGIN_TAG_REGEX"` TagRegex string `envconfig:"PLUGIN_TAG_REGEX"`
NotesFile string `envconfig:"PLUGIN_NOTES_FILE"` NotesFile string `envconfig:"PLUGIN_NOTES_FILE"`