Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update release procedure - update also v1 tag #2107

Merged
merged 1 commit into from May 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/release/release-procedure.md
Expand Up @@ -22,10 +22,13 @@
- [ ] Update the `v0.1` tag to the newest tag.
```bash
git fetch --all
git checkout origin v0.1.x
git tag -d v0.1
git tag v0.1
git push origin v0.1 -f
git checkout origin v1.0.x
git tag -d v1.0
git tag v1.0
git push origin v1.0 -f
git tag -d v1
git tag v1
git push origin v1 -f
```
- [ ] Submit Scala CLI MSI installer `scala-cli-x86_64-pc-win32.msi` for malware analysis. The Msi file must be uploaded
using this [service](https://www.microsoft.com/en-us/wdsi/filesubmission). If you have any questions, please contact
Expand Down