Skip to content

Commit

Permalink
chore: release fixes based on doing the v1.20.6 release (denoland#14289)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Apr 15, 2022
1 parent 244926e commit b4af648
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .cargo/config
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cargo_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 1 addition & 2 deletions tools/cut_a_release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions tools/release/02_create_pr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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` +
Expand Down
2 changes: 1 addition & 1 deletion tools/release/04_post_publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async function forwardReleaseCommitToMain() {
"checkout",
"-b",
newBranchName,
"main",
"origin/main",
]);
await repo.runCommand([
"git",
Expand Down

0 comments on commit b4af648

Please sign in to comment.