We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8201a7 commit d5189e8Copy full SHA for d5189e8
update.ts
@@ -46,7 +46,11 @@ class Keycloak {
46
const response = await fetch("https://www.keycloak.org/documentation");
47
const body = await responseBody(response);
48
49
- return new Version((/Documentation <span class="badge bg-primary">([^<]+)/.exec(body) ?? [])[1]);
+ return new Version(
50
+ (/Documentation <span class="badge bg-primary">([^<]+)/.exec(body) ?? [])[
51
+ 1
52
+ ],
53
+ );
54
}
55
56
apiUrl(version: Version): string {
@@ -536,6 +540,7 @@ class Git {
536
540
537
541
538
542
async commit(options: { message: string }) {
543
+ await this.gitCommand(["add", "."]);
539
544
await this.gitCommand([
545
"commit",
546
"-a",
0 commit comments