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 mill to the most recent build for 0.11 (to fix publishing to mvncentral) #252

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.9
0.11.13
2 changes: 1 addition & 1 deletion mill
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -e

if [ -z "${DEFAULT_MILL_VERSION}" ] ; then
DEFAULT_MILL_VERSION=0.11.9
DEFAULT_MILL_VERSION=0.11.13
fi

if [ -z "$MILL_VERSION" ] ; then
Expand Down
8 changes: 5 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,12 @@ programmatically via `new Interpreter(...).interpret(...)`.
To publish, make sure the version number in `build.sc` is correct, then run the following commands:

```bash
./mill -i mill.scalalib.PublishModule/publishAll --sonatypeCreds $SONATYPE_USER:$SONATYPE_PASSWORD --publishArtifacts __.publishArtifacts --release true
./mill -i mill.scalalib.PublishModule/publishAll \
--sonatypeCreds $SONATYPE_USER:$SONATYPE_PASSWORD --publishArtifacts __.publishArtifacts --release true \
--gpgArgs --passphrase=$GPG_PASSPHRASE,--batch,--yes,-a,-b,--pinentry-mode=loopback

./mill -i show sjsonnet[2.13.15].js.fullOpt
./mill -i show sjsonnet[2.13.15].jvm.assembly
./mill -i show "sjsonnet.js[2.13.15].fullOpt"
./mill -i show "sjsonnet.jvm[2.13.15].assembly"
```

## Changelog
Expand Down
Loading