File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on : workflow_dispatch
4
+
5
+ env :
6
+ ORG_GRADLE_PROJECT_signingKeyId : ${{ secrets.GPG_KEY_ID }}
7
+ ORG_GRADLE_PROJECT_signingKey : ${{ secrets.GPG_PRIVATE_KEY }}
8
+ ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.GPG_PASSPHRASE }}
9
+ ORG_GRADLE_PROJECT_sonatypeUsername : ${{ secrets.OSS_SONATYPE_USERNAME }}
10
+ ORG_GRADLE_PROJECT_sonatypePassword : ${{ secrets.OSS_SONATYPE_PASSWORD }}
11
+
12
+ jobs :
13
+ release :
14
+ environment : release
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+ - uses : actions/setup-java@v3
19
+ with :
20
+ distribution : ' temurin'
21
+ java-version : ' 11'
22
+ - name : Build
23
+ run : |
24
+ unset GEM_PATH GEM_HOME JRUBY_OPTS
25
+ ./gradlew --no-daemon clean build
26
+ ./gradlew --no-daemon publishToSonatype closeSonatypeStagingRepository
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ Build Improvement::
27
27
* Upgrade to Wildfly 26.0.1 for integration test (#1085)
28
28
* Upgrade to Spring Boot 2.6.5 for integration test (#1085)
29
29
* Fix gem version check task (#1087)
30
+ * Release from Github Actions (#1090)
30
31
31
32
Documentation::
32
33
You can’t perform that action at this time.
0 commit comments