Skip to content

Commit

Permalink
chore: update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Dec 21, 2024
1 parent c15ac40 commit 5996ce6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ on:
workflow_dispatch:
inputs:
releaseVersion:
description: "Release version"
description: "Release version (X.Y.Z)"
required: true
developmentVersion:
description: "Snapshot version"
description: "Snapshot version (X.Y.Z without -SNAPSHOT suffix)"
required: true
dry_run:
description: Run dry-run release
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
release:perform \
-DdryRun=${{ inputs.dry_run }} \
-DreleaseVersion=${{ github.event.inputs.releaseVersion }} \
-DdevelopmentVersion=${{ github.event.inputs.developmentVersion }} \
-DdevelopmentVersion=${{ github.event.inputs.developmentVersion }}-SNAPSHOT \
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
Expand Down

0 comments on commit 5996ce6

Please sign in to comment.