File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -50,3 +50,20 @@ https://github.com/diffplug/chocolatey-bucket
50
50
4 . If you have the deleted tag also locally, delete it with ` git tag -d <tagname> ` e.g. ` git tag -d v1.0.0 `
51
51
5 . commit the changes with ` git commit -m "changelog: recreate v<your-version>" ` e.g. ` git commit -m "changelog: recreate v1.0.0" `
52
52
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 `
You can’t perform that action at this time.
0 commit comments