Skip to content

Commit 2781caa

Browse files
authored
Fix publish java (#3338)
1 parent b027b33 commit 2781caa

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/release-drafter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories:
1414
- title: '🐛 Bug Fixes'
1515
collapse-after: 8
1616
labels:
17-
- 'bug'
17+
- 'fix'
1818
- title: '🧰 Maintenance'
1919
labels:
2020
- 'chore'
@@ -40,7 +40,7 @@ autolabeler:
4040
- label: 'chore'
4141
title:
4242
- '/chore/i'
43-
- label: 'bug'
43+
- label: 'fix'
4444
title:
4545
- '/fix/i'
4646
- label: 'feature'

.github/workflows/labels.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
name: PR Labels
22

3-
concurrency:
4-
group: ${{ github.workflow }}-${{ github.ref }}
5-
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }}
6-
73
on:
84
pull_request:
95
types: [ opened, reopened, synchronize, labeled, unlabeled ]

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
- name: Build Java
186186
run: ./gradlew shadowJar
187187
- name: Publish to Maven Central
188-
run: ./gradlew -i publishAndReleaseToMavenCentral --no-configuration-cache -v
188+
run: ./gradlew -i publishAndReleaseToMavenCentral --no-configuration-cache
189189
env:
190190
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGINMEMORYKEY }}
191191
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGINMEMORYKEYPASSWORD }}

0 commit comments

Comments
 (0)