Skip to content
Snippets Groups Projects
Commit c9bc7051 authored by L. Ellenbeck's avatar L. Ellenbeck
Browse files

Fix: small fix

parent 09760185
No related branches found
No related tags found
1 merge request!11Fix: small fix
...@@ -247,13 +247,13 @@ IEnumerable<string> redirectedStandardOutput; ...@@ -247,13 +247,13 @@ IEnumerable<string> redirectedStandardOutput;
Headers = new Dictionary<string, string> Headers = new Dictionary<string, string>
{ {
{"PRIVATE-TOKEN", gitlabToken}, {"PRIVATE-TOKEN", gitlabToken},
},
EnsureSuccessStatusCode = true, EnsureSuccessStatusCode = true,
}
}; };
// create tag // create tag
settings.SetJsonRequestBody("{}"); settings.SetJsonRequestBody("{}");
var responseBody = HttpPost($"https://git.rwth-aachen.de/api/v4/projects/{gitlabProjectId}/repository/tags?tag_name=v{semanticVersion}&ref=master&release_description=abc", settings); var responseBody = HttpPost($"https://git.rwth-aachen.de/api/v4/projects/{gitlabProjectId}/repository/tags?tag_name=v{semanticVersion}&ref=master&release_description={description}", settings);
Information(responseBody); Information(responseBody);
// create release // create release
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment