Skip to content

Commit b4940f5

Browse files
committed
patch deploy verbosity
1 parent edc6e6e commit b4940f5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ jobs:
3737
- name: Set release version in all POMs
3838
run: |
3939
# 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
4343
4444
- name: Release accessors-smart
4545
run: |
4646
cd accessors-smart
47-
./mvnw clean deploy -q -P release-sign-artifacts
47+
./mvnw clean deploy -P release-sign-artifacts
4848
env:
4949
CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
5050
CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
@@ -53,7 +53,7 @@ jobs:
5353
- name: Release json-smart
5454
run: |
5555
cd json-smart
56-
./mvnw clean deploy -q -P release-sign-artifacts
56+
./mvnw clean deploy -P release-sign-artifacts
5757
env:
5858
CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
5959
CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
@@ -62,7 +62,7 @@ jobs:
6262
- name: Release json-smart-action
6363
run: |
6464
cd json-smart-action
65-
./mvnw clean deploy -q -P release-sign-artifacts
65+
./mvnw clean deploy -P release-sign-artifacts
6666
env:
6767
CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
6868
CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}

0 commit comments

Comments
 (0)