Remove trailing slash from instance address (#197)

Related #136

Co-authored-by: harryzcy <[email protected]>
Reviewed-on: https://gitea.com/gitea/act_runner/pulls/197
Reviewed-by: Jason Song <[email protected]>
Reviewed-by: Lunny Xiao <[email protected]>
Co-authored-by: harryzcy <[email protected]>
Co-committed-by: harryzcy <[email protected]>
This commit is contained in:
harryzcy
2023-05-22 23:50:29 +08:00
committed by Lunny Xiao
co-authored by harryzcy
parent 84386c1b16
commit e3271d8469
+1 -1
View File
@@ -184,7 +184,7 @@ func (r *Runner) run(ctx context.Context, task *runnerv1.Task, reporter *report.
JSONLogger: false,
Env: r.envs,
Secrets: task.Secrets,
GitHubInstance: r.client.Address(),
GitHubInstance: strings.TrimSuffix(r.client.Address(), "/"),
AutoRemove: true,
NoSkipCheckout: true,
PresetGitHubContext: preset,