-
Notifications
You must be signed in to change notification settings - Fork 47
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
Use sbt-ci-release
to publish to com.github.sbt
#242
Conversation
- name: Coursier Cache | ||
id: coursier-cache | ||
uses: coursier/cache-action@v6 | ||
|
||
- name: Install Adoptium Temurin OpenJDK | ||
uses: coursier/setup-action@v1 | ||
with: | ||
jvm: adoptium:8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scala caching (sbt etc) is now built into setup-java:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
cache: 'sbt'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These need to be fixed. Likely they are blocking the scripted tests:
$ rg "com\.dwijnand" .
./README.md
23: addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")
./sbtdynver/src/sbt-test/dynver/multi-project/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
./sbtdynver/src/sbt-test/dynver/custom-version-string-0/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
./sbtdynver/src/sbt-test/dynver/versions/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
./sbtdynver/src/sbt-test/dynver/multi-build/bar/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
./sbtdynver/src/sbt-test/dynver/multi-build/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
./sbtdynver/src/sbt-test/dynver/custom-version-string/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
./sbtdynver/src/sbt-test/dynver/assert-tag-version/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
./sbtdynver/src/sbt-test/dynver/distance-separator/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
./sbtdynver/src/sbt-test/dynver/no-v-tag-prefix/project/plugins.sbt
2: case Some(x) => addSbtPlugin("com.dwijnand" % "sbt-dynver" % x)
Hey @mkurz do you want me to take this over? I randomly have a use case for the |
Sure, please take it! |
Fixes #239
@SethTisue @eed3si9n please add secrets and then we can give this a shot. Maybe tagging
v5.0.0-M4
to see if publishing works?