diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-04-11 17:12:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-11 12:12:33 -0400 |
commit | 061bcb53937548673fdaae0721a169018d322f7b (patch) | |
tree | af7267d256b308d839918c39de2d26f9bb9de68c /tools/release | |
parent | ca7432b86b78434c94c8c6059f10260ccb1b967a (diff) |
chore: update release doc template (#23299)
Adjusts release doc template to changes made by @crowlKats in
`apiland_scripts`.
Diffstat (limited to 'tools/release')
-rw-r--r-- | tools/release/release_doc_template.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/tools/release/release_doc_template.md b/tools/release/release_doc_template.md index 83b5d6766..bed3a4def 100644 --- a/tools/release/release_doc_template.md +++ b/tools/release/release_doc_template.md @@ -159,15 +159,21 @@ verify on GitHub that everything looks correct. This should occur after the Deno CLI & std are fully published, as the build script generates the symbols based on the latest tags. -- [ ] Run the release workflow in the apiland_scripts repo on the main branch: - https://github.com/denoland/apiland_scripts/actions/workflows/release.yml +- [ ] Run the `release CLI` workflow in the apiland_scripts repo on the main + branch: + https://github.com/denoland/apiland_scripts/actions/workflows/release_cli.yml + - [ ] Verify the workflow ran successfully. +- [ ] Run the `release STD` workflow in the apiland_scripts repo on the main + branch: + https://github.com/denoland/apiland_scripts/actions/workflows/release_std.yml - [ ] Verify the workflow ran successfully. <details> <summary>Failure Steps</summary> 1. Clone `deno/apiland_scripts`. - 2. Execute `deno task release`. + 2. Execute `deno task release:cli`. + 3. Execute `deno task release:std`. </details> ## Updating `deno_docker` |