Files
dify-plugin-daemon/cmd/commandline/plugin/template.go
Novice 63a12615ab feat(cli): add github ci to template (#183)
* feat(cli): add github ci to template

* chore: change the trigger condition to release

* feat: add guide document

* fix: add .github to .gitignore

---------

Co-authored-by: Yeuoly <admin@srmxy.cn>
2025-04-15 13:34:29 +08:00

18 lines
292 B
Go

package plugin
import (
_ "embed"
)
//go:embed templates/README.md
var README []byte
//go:embed templates/.env.example
var ENV_EXAMPLE []byte
//go:embed templates/PRIVACY.md
var PRIVACY []byte
//go:embed templates/.github/workflows/plugin-publish.yml
var PLUGIN_PUBLISH_WORKFLOW []byte