1
Fork 0

Add gitlab to the remotes to push.

This commit is contained in:
Bauke 2023-06-17 12:04:05 +02:00
parent 2dac8439fd
commit f869d9b7da
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ async function main(): Promise<void> {
Deno.exit(0);
}
const remotesToPush = ["origin", "github"];
const remotesToPush = ["origin", "github", "gitlab"];
for (const remote of availableRemotes) {
if (remotesToPush.includes(remote)) {
await gitPush(remote, args);