File tree 4 files changed +10
-8
lines changed
4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 62
62
env :
63
63
BINTRAY_USER : ${{ secrets.BINTRAY_USER }}
64
64
BINTRAY_PASS : ${{ secrets.BINTRAY_PASSWORD }}
65
+ OSS_USER_TOKEN_KEY : ${{ secrets.OSS_USER_TOKEN_KEY }}
66
+ OSS_USER_TOKEN_PASS : ${{ secrets.OSS_USER_TOKEN_PASS }}
65
67
run : bash github-build.sh
66
- # - name: Commit release tag and next version
67
- # uses: stefanzweifel/git-auto-commit-action@v4
68
- # with:
69
- # push_options: '--follow-tags'
Original file line number Diff line number Diff line change @@ -171,8 +171,12 @@ subprojects {
171
171
userOrg = ' graphql-java-kickstart'
172
172
version {
173
173
name = project. version
174
+ gpg {
175
+ sign = true
176
+ }
174
177
mavenCentralSync {
175
- close = ' 1'
178
+ user = System . env. OSS_USER_TOKEN_KEY ?: project. findProperty(' OSS_USER_TOKEN_KEY' ) ?: ' '
179
+ password = System . env. OSS_USER_TOKEN_PASS ?: project. findProperty(' OSS_USER_TOKEN_PASS' ) ?: ' '
176
180
}
177
181
}
178
182
}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ removeSnapshots() {
25
25
commitRelease () {
26
26
local APP_VERSION=$( getVersion)
27
27
git commit -a -m " Update version for release"
28
- # git tag -a "v${APP_VERSION}" -m "Tag release version"
28
+ git tag -a " v${APP_VERSION} " -m " Tag release version"
29
29
}
30
30
31
31
bumpVersion () {
@@ -58,7 +58,7 @@ git config --global user.name "GitHub Actions"
58
58
echo " Deploying release to Bintray"
59
59
removeSnapshots
60
60
61
- ./gradlew clean assemble # && ./gradlew bintrayUpload -x check --info
61
+ ./gradlew clean assemble && ./gradlew bintrayUpload -x check --info
62
62
63
63
commitRelease
64
64
bumpVersion
Original file line number Diff line number Diff line change 1
- version =9.3.2 -SNAPSHOT
1
+ version =10.0.0 -SNAPSHOT
2
2
group = com.graphql-java-kickstart
3
3
4
4
PROJECT_NAME = graphql-java-servlet
You can’t perform that action at this time.
0 commit comments