Skip to content

Commit 73d3c15

Browse files
committed
docs: note how to manually publish chocolatey bucket
1 parent 2050fbe commit 73d3c15

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/devs/RELEASING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,20 @@ https://github.com/diffplug/chocolatey-bucket
5050
4. If you have the deleted tag also locally, delete it with `git tag -d <tagname>` e.g. `git tag -d v1.0.0`
5151
5. commit the changes with `git commit -m "changelog: recreate v<your-version>"` e.g. `git commit -m "changelog: recreate v1.0.0"`
5252
6. push the changes with `git push origin main`
53+
54+
## Manually publishing to chocolatey bucket
55+
56+
Open the "publish a release" action run in spotless-cli repo
57+
58+
https://github.com/diffplug/spotless-cli/actions
59+
60+
1. Scroll down to "Artifacts"
61+
2. Download the `jreleaser-release-windows` artifact
62+
3. Unzip the artifact
63+
4. Copy everything from the `<zip-root>/package/spotless-cli` into the repo `chocolatey-bucket`.
64+
5. Remove the `spotless-cli/spotless-cli-*.nupkg` file
65+
6. Add everything with `git add .`
66+
7. Commit everything with `git commit -m "spotless-cli v<your-version>"` e.g. `git commit -m "spotless-cli v0.1.0"`
67+
8. Push everything with `git push origin main`
68+
9. Create a tag with `git tag v<your-version>` e.g. `git tag v0.1.0`
69+
10. Push the tag with `git push origin v<your-version>` e.g. `git push origin v0.1.0`

0 commit comments

Comments
 (0)