File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ jobs :
7
+ build :
8
+ runs-on : ubuntu-latest
9
+ timeout-minutes : 15
10
+
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - name : Set up JDK 8
14
+ uses : actions/setup-java@v2
15
+ with :
16
+ java-version : ' 8'
17
+ distribution : ' adopt'
18
+ - name : Validate Gradle wrapper
19
+ uses : gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
20
+ - name : Test
21
+ run : ./gradlew clean build publishAllPublicationsToMavenCentral
22
+ env :
23
+ ORG_GRADLE_PROJECT_signingInMemoryKeyId : ${{ secrets.ORG_GRADLE_PROJECT_IN_MEM_ID }}
24
+ ORG_GRADLE_PROJECT_signingInMemoryKeyPassword : ${{ secrets.ORG_GRADLE_PROJECT_IN_MEM_PASS }}
25
+ ORG_GRADLE_PROJECT_signingInMemoryKey : ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_KEY }}
26
+ ORG_GRADLE_PROJECT_mavenCentralUsername : ${{ secrets.ORG_GRADLE_PROJECT_MAVEN_USERNAME }}
27
+ ORG_GRADLE_PROJECT_mavenCentralPassword : ${{ secrets.ORG_GRADLE_PROJECT_MAVEN_PASSWORD }}
28
+ test_api_key : ${{ secrets.KONG_SERVER_SDK_KEY }}
29
+ test_client_key : ${{ secrets.KONG_CLIENT_SDK_KEY }}
You can’t perform that action at this time.
0 commit comments