@@ -37,14 +37,14 @@ jobs:
37
37
- name : Set release version in all POMs
38
38
run : |
39
39
# Update version in all POMs
40
- cd accessors-smart && ./mvnw versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
41
- cd ../json-smart && ./mvnw versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
42
- cd ../json-smart-action && ./mvnw versions:set -DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
40
+ cd accessors-smart && ./mvnw versions:set -q - DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
41
+ cd ../json-smart && ./mvnw versions:set -q - DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
42
+ cd ../json-smart-action && ./mvnw versions:set -q - DnewVersion=${{ github.event.inputs.version }} -DgenerateBackupPoms=false
43
43
44
44
- name : Release accessors-smart
45
45
run : |
46
46
cd accessors-smart
47
- ./mvnw clean deploy -q - P release-sign-artifacts
47
+ ./mvnw clean deploy -P release-sign-artifacts
48
48
env :
49
49
CENTRAL_TOKEN_USERNAME : ${{ secrets.CENTRAL_TOKEN_USERNAME }}
50
50
CENTRAL_TOKEN_PASSWORD : ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
53
53
- name : Release json-smart
54
54
run : |
55
55
cd json-smart
56
- ./mvnw clean deploy -q - P release-sign-artifacts
56
+ ./mvnw clean deploy -P release-sign-artifacts
57
57
env :
58
58
CENTRAL_TOKEN_USERNAME : ${{ secrets.CENTRAL_TOKEN_USERNAME }}
59
59
CENTRAL_TOKEN_PASSWORD : ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
62
62
- name : Release json-smart-action
63
63
run : |
64
64
cd json-smart-action
65
- ./mvnw clean deploy -q - P release-sign-artifacts
65
+ ./mvnw clean deploy -P release-sign-artifacts
66
66
env :
67
67
CENTRAL_TOKEN_USERNAME : ${{ secrets.CENTRAL_TOKEN_USERNAME }}
68
68
CENTRAL_TOKEN_PASSWORD : ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
0 commit comments