File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Maven Release
2
+ on :
3
+ workflow_dispatch :
4
+
5
+ jobs :
6
+ publish :
7
+ name : Create Processing Core Release on Maven Central
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - name : Checkout Repository
11
+ uses : actions/checkout@v4
12
+ - name : Setup Gradle
13
+ uses : gradle/actions/setup-gradle@v3
14
+ - name : Build with Gradle
15
+ run : ./gradlew publish
16
+ env :
17
+ MAVEN_CENTRAL_USERNAME : ${{ secrets.MAVEN_CENTRAL_USERNAME }}
18
+ MAVEN_CENTRAL_PASSWORD : ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
19
+ ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.SIGNING_IN_MEMORY_KEY }}
20
+ ORG_GRADLE_PROJECT_signingInMemoryKeyId : ${{ secrets.SIGNING_IN_MEMORY_KEY_ID }}
21
+ ORG_GRADLE_PROJECT_signingInMemoryKeyPassword : ${{ secrets.SIGNING_IN_MEMORY_KEY_PASSWORD }}
You can’t perform that action at this time.
0 commit comments