Skip to content

Commit ed183d2

Browse files
committed
Adjust workflows for RCs
1 parent 2b0a25a commit ed183d2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/changelog-draft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Push to wiki
2828
run: |
2929
changelog_filename=generated-changelog.md
30-
java -jar github-changelog-generator.jar --changelog.repository=spring-projects/sts4 ${{ inputs.release }} ./${changelog_filename}
30+
java -jar github-changelog-generator.jar --changelog.repository=spring-projects/spring-tools ${{ inputs.release }} ./${changelog_filename}
3131
cat $changelog_filename | cat - Changelog.md > new_Changelog.md
3232
mv new_Changelog.md Changelog.md
3333
cat Changelog.md

.github/workflows/gh-hosted-eclipse-distro-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,9 +381,9 @@ jobs:
381381
eclipse_profile=${{ inputs.eclipse_profile }}
382382
eclipse_version=${eclipse_profile:1:1}.${eclipse_profile:2}
383383
p2_qualifier=${{ inputs.p2-qualifier }}
384-
version_segment=${{ steps.project-version.outputs.version }}
384+
version_segment=${{ needs.eclipse-distro-build.steps.project-version.outputs.version }}
385385
if ! [[ -z ${p2_qualifier} ]]; then
386-
version_segment=${{ steps.project-version.outputs.version }}.$p2_qualifier
386+
version_segment=${{ needs.eclipse-distro-build.steps.project-version.outputs.version }}.$p2_qualifier
387387
fi
388388
389389

0 commit comments

Comments
 (0)