-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Support Gradle tasks #65
Conversation
b6609b2
to
cfb4ae1
Compare
Hi, @mkurz! 👋 |
# Disable caching of ~/.gradle/caches/build-cache-* | ||
save-local-build-cache: false | ||
# Disable caching of ~/.m2/repository/ | ||
save-maven-dependencies-cache: false |
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.
Just checking
save-generated-gradle-jars: false
andsave-gradle-dependencies-cache: false
are not needed? I guess you know what you are doing, just double checking :)
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.
Yes, I think the default values of these parameters are OK for us 😉
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.
I think this is OK. As long as all the previous, non-gradle things keep working, it should be OK.
- name: Install Adoptium Temurin OpenJDK | ||
uses: coursier/setup-action@v1 | ||
with: | ||
jvm: adoptium:${{ inputs.java }} | ||
|
||
- name: Publish artifacts | ||
run: sbt ci-release | ||
run: ${{ inputs.cmd }} |
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.
I like that, I think I already could have used that in the past.
Feel free to merge / release when you a ready. |
No description provided.