We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa76df8 commit df4ff17Copy full SHA for df4ff17
.github/workflows/spring-artifactory-release.yml
@@ -63,8 +63,11 @@ jobs:
63
else
64
CURRENT_VERSION=$(./gradlew properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')
65
fi
66
+ echo $CURRENT_VERSION
67
export CANDIDATE_VERSION=${CURRENT_VERSION/-SNAPSHOT}
68
+ echo $CANDIDATE_VERSION
69
RELEASE_VERSION=$(gh api repos/$GITHUB_REPOSITORY/milestones --jq 'map(select(.title | startswith(env.CANDIDATE_VERSION))) | .[0] | .title')
70
+ echo $RELEASE_VERSION
71
if [ -z $RELEASE_VERSION ]
72
then
73
gh run cancel ${{ github.run_id }}
@@ -125,4 +128,4 @@ jobs:
125
128
uses: ./.github/workflows/spring-finalize-release.yml
126
129
with:
127
130
milestone: ${{ needs.releaseVersion.outputs.releaseVersion }}
- secrets: inherit
131
+ secrets: inherit
0 commit comments