mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: release fixes based on doing the v1.20.6 release (#14289)
This commit is contained in:
parent
244926e83c
commit
b4af648c15
5 changed files with 7 additions and 7 deletions
|
@ -6,8 +6,8 @@ rustflags = [
|
|||
"-C",
|
||||
"target-feature=+crt-static",
|
||||
"-C",
|
||||
# double the stack size to prevent swc overflowing the stack in debug
|
||||
"link-arg=/STACK:2097152",
|
||||
# increase the stack size to prevent swc overflowing the stack in debug
|
||||
"link-arg=/STACK:1572864",
|
||||
]
|
||||
|
||||
[target.aarch64-apple-darwin]
|
||||
|
|
4
.github/workflows/cargo_publish.yml
vendored
4
.github/workflows/cargo_publish.yml
vendored
|
@ -44,6 +44,6 @@ jobs:
|
|||
GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }}
|
||||
GH_WORKFLOW_ACTOR: ${{ github.actor }}
|
||||
run: |
|
||||
git config user.email "propelml@gmail.com"
|
||||
git config user.name "denobot"
|
||||
git config user.email "${{ github.actor }}@users.noreply.github.com"
|
||||
git config user.name "${{ github.actor }}"
|
||||
./tools/release/04_post_publish.ts
|
||||
|
|
|
@ -35,8 +35,7 @@ Before starting the process write a message in company's #general channel:
|
|||
3. A PR will be automatically created. Follow the checklist in the PR and review
|
||||
it.
|
||||
|
||||
4. Merge the PR. While doing so, ensure that the commit name is exactly the
|
||||
version name. Eg. `0.121.0`, not `0.121.0 (#1810)`.
|
||||
4. Merge the PR.
|
||||
|
||||
5. Wait for the CI run to complete which will tag the repo and create a draft
|
||||
release. Review the draft release and then publish it.
|
||||
|
|
|
@ -34,6 +34,7 @@ console.log(`Opened PR at ${openedPr.data.url}`);
|
|||
function getPrBody() {
|
||||
let text = `Bumped versions for ${cliCrate.version}\n\n` +
|
||||
`Please ensure:\n` +
|
||||
`- [ ] Target branch is correct\n` +
|
||||
`- [ ] Crate versions are bumped correctly\n` +
|
||||
`- [ ] deno_std version is incremented in the code\n` +
|
||||
`- [ ] Releases.md is updated correctly\n\n` +
|
||||
|
|
|
@ -50,7 +50,7 @@ async function forwardReleaseCommitToMain() {
|
|||
"checkout",
|
||||
"-b",
|
||||
newBranchName,
|
||||
"main",
|
||||
"origin/main",
|
||||
]);
|
||||
await repo.runCommand([
|
||||
"git",
|
||||
|
|
Loading…
Reference in a new issue