Skip to content
Merged
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
7 changes: 5 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ jobs:
with:
java-version: 17
distribution: zulu
- name: Prebuild library
run: ./gradlew publishToMavenLocal
- name: Publish
# gradle configuration cache not supported in https://github.com/gradle-nexus/publish-plugin
run: ./gradlew publish --no-configuration-cache
# Publish plugin lacks configuration cache support:
# https://github.com/gradle-nexus/publish-plugin/issues/221
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository --no-configuration-cache

release:
name: Create release
Expand Down