Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/prepareRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:
- id: get-release-name
run: |
name=$(echo ${{ github.event.milestone.due_on }} | cut -d- -f-2)
echo "name=$name" >> $GITHUB_OUTPUT
year=$(echo $name|cut -d- -f 1)
month=$(echo $name|cut -d- -f 2)
echo "year=$year" >> $GITHUB_OUTPUT
echo "month=$month" >> $GITHUB_OUTPUT
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: master
Expand All @@ -34,7 +37,7 @@ jobs:
- name: Update Main Versions
run: mvn -U -ntp -f eclipse-platform-parent org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=${{ github.event.milestone.title }}.0-SNAPSHOT -Dmodules=../eclipse.platform.releng.prereqs.sdk,../eclipse.platform.releng.tychoeclipsebuilder
- name: Update Release Versions
run: mvn -ntp -f eclipse-platform-parent/pom.xml --non-recursive org.eclipse.tycho:tycho-versions-plugin:set-property -Dproperties=releaseVersion,releaseName -DnewReleaseName=${{ steps.get-release-name.outputs.name }} -DnewReleaseVersion=${{ github.event.milestone.title }}
run: mvn -ntp -f eclipse-platform-parent/pom.xml --non-recursive org.eclipse.tycho:tycho-versions-plugin:set-property -Dproperties=releaseVersion,releaseYear,releaseMonth -DnewReleaseYear=${{ steps.get-release-name.outputs.year }} -DnewReleaseMonth=${{ steps.get-release-name.outputs.month }} -DnewReleaseVersion=${{ github.event.milestone.title }}
- name: Create Pull Request for Release ${{ github.event.milestone.title }}
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
with:
Expand Down
3 changes: 2 additions & 1 deletion eclipse-platform-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@

<!-- releaseYear is used in copyright statements, etc.-->
<releaseYear>2025</releaseYear>
<releaseMonth>06</releaseMonth>
<!--
releaseName should match the yearly "release train" name.
For example, "Mars", "Mars.1", "Luna SR2", etc.
It will show up in "about box",
such as Version: Mars (4.5), for main features.
See bug 328139.
-->
<releaseName>${releaseYear}-06</releaseName>
<releaseName>${releaseYear}-${releaseMonth}</releaseName>
<releaseVersion>4.36</releaseVersion>
<!--
The releaseNumbers below, for SDK and Platform, might be
Expand Down