another attempt
Publish Action Image / build (push) Successful in 24s
Publish Action Image / publish (push) Successful in 25s

This commit is contained in:
2026-06-29 16:07:46 +10:00
parent 9adb5780f2
commit 8a2225bf08
3 changed files with 53 additions and 10 deletions
+5 -4
View File
@@ -15,10 +15,11 @@ type KforgeConfig struct {
Preview PreviewConfig `yaml:"preview,omitempty"`
Environments map[string]EnvironmentConfig `yaml:"environments"`
// ActionRef is the Gitea Actions reference to this kforge installation
// (e.g. "gitea.example.com/infra/kforge@main"). When set, kforge gitea-actions
// and kforge gitea-preview generate workflows that call kforge as a reusable
// action step instead of installing and running kforge inline.
// ActionRef is the Docker image reference for the pre-built kforge action
// (e.g. "registry.example.com/infra/kforge:latest"). When set, kforge
// gitea-actions and kforge gitea-preview generate `uses: docker://<ref>`
// steps instead of installing and running kforge inline. The kforge repo
// must publish this image on each release.
ActionRef string `yaml:"action_ref,omitempty"`
}