Skip to content

Commit

Permalink
feat: test update
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-timothy-albert committed Apr 9, 2024
1 parent 14f05dc commit 9489b4f
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions internal/actions/runWorkflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,21 @@ func RunWorkflow() error {
}

fmt.Println("WE ARE HERE")
fmt.Println(os.Getenv("INPUT_OPENAPI_DOC_AUTH_TOKEN"))
fmt.Println(os.Getenv("OPENAPI_DOC_AUTH_TOKEN"))
if os.Getenv("INPUT_OPENAPI_DOC_AUTH_TOKEN") != "" {
fmt.Println("WE ARE HERE1")
}

if os.Getenv("OPENAPI_DOC_AUTH_TOKEN") != "" {
fmt.Println("WE ARE HERE2")
}

if os.Getenv("INPUT_openapi_doc_auth_token") != "" {
fmt.Println("WE ARE HERE3")
}

if os.Getenv("openapi_doc_auth_token") != "" {
fmt.Println("WE ARE HERE4")
}

resolvedVersion, err := cli.Download(environment.GetPinnedSpeakeasyVersion(), g)
if err != nil {
Expand Down

0 comments on commit 9489b4f

Please sign in to comment.