blob: 9ea9ade31fd1b14f4c91582c528f1c055c2c7939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env -S deno run -A --lock=tools/deno.lock.json
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { $ } from "./deps.ts";
import { DenoWorkspace } from "./deno_workspace.ts";
const workspace = await DenoWorkspace.load();
// create a release notes file for the GH release draft
$.path(DenoWorkspace.rootDirPath)
.join("./target/release/release-notes.md")
.writeTextSync(workspace.getReleasesMdFile().getLatestReleaseText().fullText);
|