1
0
Fork 0
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:
David Sherret 2022-04-15 09:39:41 -04:00 committed by GitHub
parent 244926e83c
commit b4af648c15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

View file

@ -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]

View file

@ -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

View file

@ -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.

View file

@ -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` +

View file

@ -50,7 +50,7 @@ async function forwardReleaseCommitToMain() {
"checkout",
"-b",
newBranchName,
"main",
"origin/main",
]);
await repo.runCommand([
"git",