File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 71
71
ORG_GRADLE_PROJECT_SIGNINGPASSWORD : ${{secrets.ORG_GRADLE_PROJECT_SIGNINGPASSWORD}}
72
72
ORG_GRADLE_PROJECT_MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
73
73
ORG_GRADLE_PROJECT_MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
74
+
75
+ publish-springwolf-cloud-stream-release :
76
+ runs-on : ubuntu-latest
77
+ steps :
78
+ - uses : actions/checkout@v2
79
+
80
+ - name : Set up JDK 1.8
81
+ uses : actions/setup-java@v1
82
+ with :
83
+ java-version : 1.8
84
+
85
+ - name : Setup Gradle
86
+ uses : gradle/gradle-build-action@v2
87
+
88
+ - name : Publish
89
+ run : ./gradlew -p springwolf-plugins/springwolf-cloud-stream-plugin publish
90
+ env :
91
+ ORG_GRADLE_PROJECT_SNAPSHOT : false
92
+ ORG_GRADLE_PROJECT_SIGNINGKEY : ${{secrets.ORG_GRADLE_PROJECT_SIGNINGKEY}}
93
+ ORG_GRADLE_PROJECT_SIGNINGPASSWORD : ${{secrets.ORG_GRADLE_PROJECT_SIGNINGPASSWORD}}
94
+ ORG_GRADLE_PROJECT_MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
95
+ ORG_GRADLE_PROJECT_MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
You can’t perform that action at this time.
0 commit comments