Skip to content

Commit 4fd1c3c

Browse files
BirmacherAkosgodrei
authored andcommitted
fix: convert back the token for the network call (#52)
1 parent cd8fba2 commit 4fd1c3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ func main() {
233233
if configs.GithubAccessToken != "" {
234234
log.Printf("Appending GITHUB_ACCESS_TOKEN to process environments")
235235

236-
cmd.AppendEnvs(fmt.Sprintf("GITHUB_ACCESS_TOKEN=%s", configs.GithubAccessToken))
236+
cmd.AppendEnvs(fmt.Sprintf("GITHUB_ACCESS_TOKEN=%s", string(configs.GithubAccessToken)))
237237
}
238238

239239
cmd.SetStdout(os.Stdout)

0 commit comments

Comments
 (0)