Skip to content

Commit 21833ef

Browse files
committed
fix site.build.version.file and minor update
Signed-off-by: Andre Bossert <anb0s@anbos.de>
1 parent 8ec54d9 commit 21833ef

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/pre_release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ jobs:
3333
body: |
3434
### Help wanted with testing of the build **${{ env.build_version_full }}**
3535
36-
It is available at the testing update site now: http://anb0s.github.io/EasyShell/testing
37-
Version: **EasyShell ${{ env.build_version_full }}**
36+
It is available at the testing update site now: `http://anb0s.github.io/EasyShell/testing`
37+
Exact version only site: `http://anb0s.github.io/EasyShell/testing/${{ env.build_version_path }}`
38+
Version: `EasyShell ${{ env.build_version_full }}`
3839
3940
**Use "Help | Install New Software...", paste the link and select the right version!**
4041

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
distribution: 'temurin'
2929
cache: maven
3030
- name: 'Build for platform: ${{ matrix.target-platform }}'
31-
run: 'mvn -Dtarget.platform=${{ matrix.target-platform }} -Dsite.dir=testing clean verify'
31+
run: 'mvn -Dtarget.platform=${{ matrix.target-platform }} -Dsite.dir=testing clean verify'
3232
- name: Assign build.version.properties to env variable
3333
if: matrix.target-platform == env.DEFAULT_TARGET_PLATFORM
3434
run: cat site/target/build.version.properties >> $GITHUB_ENV

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
- name: Create Pull Request
2828
uses: peter-evans/create-pull-request@v3
2929
with:
30-
commit-message: '[${{ env.build_version_unqualified }}] testing build ${{ env.build_version_full }}'
31-
title: '[${{ env.build_version_unqualified }}] testing of build ${{ env.build_version_full }}'
30+
commit-message: '[${{ env.build_version_major_minor }}] testing build ${{ env.build_version_full }}'
31+
title: '[${{ env.build_version_major_minor }}] testing of build ${{ env.build_version_full }}'
3232
body: |
3333
### Fixed issues
3434

site/packaging-p2composite.ant

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<echo file="${build.version.file}" append="true" message="build_version_milestone=${build.version.milestone}${line.separator}"/>
106106

107107
<copy file="${parent.root.dir}/README.md" tofile="${site.parent.dir}/index.md" overwrite="true"/>
108-
<copy file="${build.version.file}" tofile="$site.build.version.file}" overwrite="true"/>
108+
<copy file="${build.version.file}" tofile="${site.build.version.file}" overwrite="true"/>
109109
</target>
110110

111111
<!-- = = = = = = = = = = = = = = = = =

0 commit comments

Comments
 (0)