build: use workflows for bumping versions and cargo publishing on the CI (#13995)

This commit is contained in:
David Sherret 2022-03-30 16:37:00 -04:00 committed by GitHub
parent f61b2c0b11
commit 5cab3e7dba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 306 additions and 74 deletions

View file

@ -12,7 +12,10 @@ export class DenoWorkspace {
static async load(): Promise<DenoWorkspace> {
return new DenoWorkspace(
await Repo.load("deno", DenoWorkspace.rootDirPath),
await Repo.load({
name: "deno",
path: DenoWorkspace.rootDirPath,
}),
);
}