Skip to content

Commit

Permalink
Prepare release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankoppier committed Sep 22, 2024
1 parent 0dd1678 commit 9fb0d95
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ jobs:
run: ./gradlew publish

- name: Publish to Maven Central
run: ./gradlew jreleaserFullRelease
run: ./gradlew jreleaserFullRelease -Djreleaser.mavencentral.username=${{ secrets.MAVEN_CENTRAL_USERNAME }} -Djreleaser.mavencentral.password=${{ secrets.MAVEN_CENTRAL_PASSWORD }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to Gradle Plugin Portal
run: ./gradlew publishPlugins
run: ./gradlew publishPlugins -Dgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }} -Dgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jreleaser {
username = properties["mavenCentralUsername"] as? String
password = properties["mavenCentralPassword"] as? String
applyMavenCentralRules = true
retryDelay = 15
retryDelay = 20
}
create("compiler-plugin") {
active = org.jreleaser.model.Active.ALWAYS
Expand All @@ -81,7 +81,7 @@ jreleaser {
username = properties["mavenCentralUsername"] as? String
password = properties["mavenCentralPassword"] as? String
applyMavenCentralRules = true
retryDelay = 15
retryDelay = 20
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.8.0-SNAPSHOT
version=0.8.0

0 comments on commit 9fb0d95

Please sign in to comment.