Skip to content

Commit 06153c5

Browse files
committed
chore: fix publishing tasks
1 parent bbfaabe commit 06153c5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: ubuntu-latest
9898

9999
steps:
100-
- name: 🛎️Check out the source code
100+
- name: 🛎️ Check out the source code
101101
uses: actions/checkout@v4
102102
with:
103103
fetch-depth: 0
@@ -114,7 +114,7 @@ jobs:
114114
- name: 🐘 Setup Gradle
115115
uses: gradle/actions/setup-gradle@v4
116116

117-
- name: ️Build Changelog
117+
- name: ️ Build Changelog
118118
id: github_release
119119
uses: mikepenz/release-changelog-builder-action@v5
120120
with:
@@ -124,7 +124,7 @@ jobs:
124124
env:
125125
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
126126

127-
- name: 📡Publish to Maven Central
127+
- name: 📡 Publish to Maven Central
128128
id: gradle-build
129129
run: |
130130
./gradlew publishPluginMavenPublicationToMavenCentralRepository
@@ -140,13 +140,13 @@ jobs:
140140
ORG_GRADLE_PROJECT_githubActor: ${{ github.actor }}
141141
ORG_GRADLE_PROJECT_githubToken: ${{ secrets.GITHUB_TOKEN }}
142142

143-
- name: ✨Github Release
143+
- name: Github Release
144144
uses: softprops/action-gh-release@v2
145145
with:
146146
body: ${{ steps.github_release.outputs.changelog }}
147147
files: |
148-
${{ github.workspace }}/catalog/build/libs/plugins-*.jar
149-
${{ github.workspace }}/plugins/build/version-catalog/libs.versions.toml
148+
${{ github.workspace }}/plugins/build/libs/plugins-*.jar
149+
${{ github.workspace }}/catalog/build/version-catalog/libs.versions.toml
150150
generate_release_notes: true
151151
fail_on_unmatched_files: true
152152
env:

buildSrc/src/main/kotlin/plugins/publishing.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
group = libs.versions.group.get()
1616

1717
mavenPublishing {
18-
publishToMavenCentral(host = SonatypeHost.CENTRAL_PORTAL, automaticRelease = false)
18+
publishToMavenCentral(host = SonatypeHost.CENTRAL_PORTAL, automaticRelease = true)
1919

2020
signAllPublications()
2121

sandbox/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ semver.commitsMaxCount=100
2121
# semver.logOnlyOnRootProject=true
2222

2323
# Sandbox Testing
24-
test.version=0.5.0
24+
test.version=0.7.0

0 commit comments

Comments
 (0)