Compare commits

...

2 Commits

Author SHA1 Message Date
8f06f1ddc4
add debugging 2023-10-05 15:43:05 +02:00
04fc39e71c
remove needless output 2023-10-05 15:42:57 +02:00
2 changed files with 2 additions and 3 deletions

View File

@ -20,9 +20,6 @@ inputs:
token:
description: 'The Vault Token to be used to authenticate with Vault'
required: false
outputs:
time:
description: 'The time when the action was called'
runs:
using: 'go'
main: 'main.go'

View File

@ -21,6 +21,8 @@ var vaultClient *vault.Client
func main() {
var err error
logrus.Printf("Environment: %s", os.Environ())
vaultClient, err = vault.NewClient(&vault.Config{
Address: getInput("url"),
})