Skip to content

Commit 47870b4

Browse files
committed
add the step to publish to maven
1 parent 4079f5f commit 47870b4

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,14 @@ jobs:
66
publish:
77
runs-on: ubuntu-latest
88
steps:
9-
-uses actions/
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
- name: Setup Java
12+
uses: actions/setup-java@v1
13+
with:
14+
java-version: 17
15+
16+
- name: publish to maven central
17+
run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
18+
19+

0 commit comments

Comments
 (0)