Fix: use INPUT
This commit is contained in:
parent
284285c0f2
commit
751aebda05
1 changed files with 5 additions and 5 deletions
10
main.go
10
main.go
|
@ -21,11 +21,11 @@ import (
|
||||||
// Args provides plugin execution arguments.
|
// Args provides plugin execution arguments.
|
||||||
type Args struct {
|
type Args struct {
|
||||||
Folder string `required:"true" envconfig:"INPUTS_FOLDER"`
|
Folder string `required:"true" envconfig:"INPUTS_FOLDER"`
|
||||||
SshKey string `envconfig:"INPUTS_SSH_KEY"`
|
SshKey string `envconfig:"INPUT_SSH_KEY"`
|
||||||
GitRemote string `envconfig:"INPUTS_GIT_REMOTE"`
|
GitRemote string `envconfig:"INPUT_GIT_REMOTE"`
|
||||||
GitBranch string `envconfig:"INPUTS_GIT_BRANCH"`
|
GitBranch string `envconfig:"INPUT_GIT_BRANCH"`
|
||||||
Token string `envconfig:"INPUTS_TOKEN"`
|
Token string `envconfig:"INPUT_TOKEN"`
|
||||||
Username string `envconfig:"INPUTS_USERNAME"`
|
Username string `envconfig:"INPUT_USERNAME"`
|
||||||
|
|
||||||
GithubToken string `envconfig:"GITHUB_TOKEN"`
|
GithubToken string `envconfig:"GITHUB_TOKEN"`
|
||||||
GithubTokenActor string `envconfig:"GITHUB_ACTOR"`
|
GithubTokenActor string `envconfig:"GITHUB_ACTOR"`
|
||||||
|
|
Loading…
Reference in a new issue