This commit is contained in:
2023-10-05 16:20:35 +02:00
parent 61196f3079
commit 1820f23b31

View File

@@ -157,7 +157,7 @@ func setOutput(k, v string) (err error) {
return errors.Wrap(err, "write to output") return errors.Wrap(err, "write to output")
} }
envFilepath := os.Getenv("GITHUB_ENV") + eol envFilepath := os.Getenv("GITHUB_ENV")
envFile, err := os.OpenFile(envFilepath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0o644) envFile, err := os.OpenFile(envFilepath, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0o644)
if err != nil { if err != nil {