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 9c89a60 commit 8fcd162Copy full SHA for 8fcd162
.github/workflows/gh-hosted-eclipse-distro-build.yml
@@ -109,12 +109,9 @@ jobs:
109
dist_path=${{ inputs.build_type }}/dist/$eclipse_version
110
p2_path=${{ inputs.build_type }}/update/$eclipse_version
111
else
112
- cd eclipse-distributions
113
- version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
114
- version_segment="${version%%-*}"
115
p2_qualifier=${{ inputs.p2-qualifier }}
116
if ! [[ -z ${p2_qualifier} ]]; then
117
- version_segment="${version_segment}.${p2_qualifier}
+ version_segment=${{ steps.project-version.outputs.version }}.$p2_qualifier
118
fi
119
dist_path=${{ inputs.build_type }}/dist/$version_segment/$eclipse_version
120
p2_path=${{ inputs.build_type }}/update/$version_segment/$eclipse_version
0 commit comments