mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-09 20:33:15 -06:00
support non-extension file name
This commit is contained in:
parent
91a370de41
commit
e4a304c274
1 changed files with 4 additions and 10 deletions
|
@ -9,6 +9,7 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"oizys/internal/oizys"
|
"oizys/internal/oizys"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/charmbracelet/log"
|
"github.com/charmbracelet/log"
|
||||||
"github.com/google/go-github/v63/github"
|
"github.com/google/go-github/v63/github"
|
||||||
|
@ -154,17 +155,10 @@ func ReadMarkdownFromZip(zipData []byte, fileName string) (string, error) {
|
||||||
return string(content), nil
|
return string(content), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// func CI(rest ...string) {
|
|
||||||
// args := []string{
|
|
||||||
// "workflow", "run", "build.yml",
|
|
||||||
// "-F", fmt.Sprintf("hosts=%s", o.host),
|
|
||||||
// }
|
|
||||||
// args = append(args, rest...)
|
|
||||||
// cmd := exec.Command("gh", args...)
|
|
||||||
// e.ExitWithCommand(cmd)
|
|
||||||
// }
|
|
||||||
|
|
||||||
func CreateDispatch(workflowFileName string, ref string, inputs map[string]interface{}) {
|
func CreateDispatch(workflowFileName string, ref string, inputs map[string]interface{}) {
|
||||||
|
if !strings.HasSuffix(workflowFileName, ".yml") && !strings.HasSuffix(workflowFileName, ".yaml") {
|
||||||
|
workflowFileName = workflowFileName + ".yml"
|
||||||
|
}
|
||||||
log.Infof("creating dispatch event for %s", workflowFileName)
|
log.Infof("creating dispatch event for %s", workflowFileName)
|
||||||
event := github.CreateWorkflowDispatchEventRequest{Ref: ref, Inputs: inputs}
|
event := github.CreateWorkflowDispatchEventRequest{Ref: ref, Inputs: inputs}
|
||||||
_, err := client.Actions.CreateWorkflowDispatchEventByFileName(
|
_, err := client.Actions.CreateWorkflowDispatchEventByFileName(
|
||||||
|
|
Loading…
Reference in a new issue