We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01d1a65 commit fc15807Copy full SHA for fc15807
1 file changed
.github/workflows/release.yml
@@ -61,7 +61,7 @@ jobs:
61
- name: Update parent POM versions in modules
62
run: |
63
# Update parent version in all child POMs
64
- for pom in $(find . -name pom.xml -not -path "*/target/*"); do
+ for pom in $(find . -name pom.xml -not -path "*/target/*" -not -path "*/src/test/resources/*"); do
65
if [ -f "$pom" ]; then
66
echo "Updating parent version in $pom"
67
mvn versions:update-parent -DparentVersion=${{ github.event.inputs.release_version }} -f "$pom"
@@ -235,6 +235,7 @@ jobs:
235
prerelease: false
236
237
check-central-deployment:
238
+ if: ${{ github.event.inputs.dryrun != 'true' }}
239
name: Verify Maven Central Deployment
240
needs: release
241
runs-on: ubuntu-latest
0 commit comments