Skip to content

Commit

Permalink
fix: developer-notes release instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtPooki committed May 10, 2023
1 parent 61f0da7 commit 311ac5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DEVELOPER-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Manually test a few things that don't transfer well to automated testing:
1. Update all links and badges in `README.md` to point to the new version (`A.B.C`).
- You may use `ts-node scripts/release/updateReadme.ts <oldVersion> <newVersion>` to update the readme. e.g. `ts-node scripts/release/updateReadme.ts 0.26.0 0.26.1`
- If you do, confirm everything is updated properly.
1. Update the latest version commit `git add README.md && git commit --amend --no-edit`
1. Update the latest version commit `git tag -d vA.B.C && git add README.md && git commit --amend --no-edit && git tag vA.B.C`
1. Publish local changes and the tag to the GitHub repo: `git push && git push origin vA.B.C`.
1. Wait for the CI to upload the binaries to the draft release (a new one will be created if you haven't drafted one).
1. Publish a release draft.
Expand Down

0 comments on commit 311ac5b

Please sign in to comment.