Skip to content

Commit 528d609

Browse files
committed
build: fix prepare release
- Fix actions/setup-java configuration in release prepare workflow
1 parent afe1789 commit 528d609

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/prepare_release.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
releaseVersion:
77
description: 'Release and tag version'
88
required: true
9-
default: "v1.5.0-dev.N"
9+
default: "v1.5.0"
1010
developmentVersion:
1111
description: 'Version to use for new working copy'
1212
required: true
@@ -25,9 +25,6 @@ jobs:
2525
distribution: 'zulu'
2626
java-version: '8'
2727
cache: 'maven'
28-
server-id: central
29-
server-username: MAVEN_USERNAME
30-
server-password: MAVEN_TOKEN
3128

3229
- name: Configure Git user
3330
run: |
@@ -38,8 +35,6 @@ jobs:
3835
env:
3936
GITHUB_ACTOR: ${{ github.actor }}
4037
GITHUB_TOKEN: ${{ github.token }}
41-
MAVEN_USERNAME: ${{ secrets.MAVEN_CENTRAL_USER }}
42-
MAVEN_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
4338
RELEASE_VERSION: ${{ github.event.inputs.releaseVersion }}
4439
DEVELOPMENT_VERSION: ${{ github.event.inputs.developmentVersion }}
4540
run: |

0 commit comments

Comments
 (0)