|
|
@@ -33,6 +33,7 @@ jobs:
|
|
|
id: version_info
|
|
|
run: |
|
|
|
echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}" >> $GITHUB_OUTPUT
|
|
|
+ echo "prev_build_version=${{ env.RYUJINX_BASE_VERSION }}.$((${{ github.run_number }} - 1))" >> $GITHUB_OUTPUT
|
|
|
shell: bash
|
|
|
|
|
|
- name: Create tag
|
|
|
@@ -51,6 +52,7 @@ jobs:
|
|
|
with:
|
|
|
name: ${{ steps.version_info.outputs.build_version }}
|
|
|
tag: ${{ steps.version_info.outputs.build_version }}
|
|
|
+ body: "**Full Changelog**: https://github.com/${{ github.repository }}/compare/${{ steps.version_info.outputs.prev_build_version }}...${{ steps.version_info.outputs.build_version }}"
|
|
|
omitBodyDuringUpdate: true
|
|
|
owner: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_OWNER }}
|
|
|
repo: ${{ env.RYUJINX_TARGET_RELEASE_CHANNEL_REPO }}
|
|
|
@@ -79,6 +81,7 @@ jobs:
|
|
|
id: version_info
|
|
|
run: |
|
|
|
echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}" >> $GITHUB_OUTPUT
|
|
|
+ echo "prev_build_version=${{ env.RYUJINX_BASE_VERSION }}.$((${{ github.run_number }} - 1))" >> $GITHUB_OUTPUT
|
|
|
echo "git_short_hash=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT
|
|
|
shell: bash
|
|
|
|
|
|
@@ -132,6 +135,7 @@ jobs:
|
|
|
name: ${{ steps.version_info.outputs.build_version }}
|
|
|
artifacts: "release_output/*.tar.gz,release_output/*.zip"
|
|
|
tag: ${{ steps.version_info.outputs.build_version }}
|
|
|
+ body: "**Full Changelog**: https://github.com/${{ github.repository }}/compare/${{ steps.version_info.outputs.prev_build_version }}...${{ steps.version_info.outputs.build_version }}"
|
|
|
omitBodyDuringUpdate: true
|
|
|
allowUpdates: true
|
|
|
replacesArtifacts: true
|
|
|
@@ -170,6 +174,7 @@ jobs:
|
|
|
id: version_info
|
|
|
run: |
|
|
|
echo "build_version=${{ env.RYUJINX_BASE_VERSION }}.${{ github.run_number }}" >> $GITHUB_OUTPUT
|
|
|
+ echo "prev_build_version=${{ env.RYUJINX_BASE_VERSION }}.$((${{ github.run_number }} - 1))" >> $GITHUB_OUTPUT
|
|
|
echo "git_short_hash=$(git rev-parse --short "${{ github.sha }}")" >> $GITHUB_OUTPUT
|
|
|
|
|
|
- name: Configure for release
|
|
|
@@ -196,6 +201,7 @@ jobs:
|
|
|
name: ${{ steps.version_info.outputs.build_version }}
|
|
|
artifacts: "publish_ava/*.tar.gz, publish_headless/*.tar.gz"
|
|
|
tag: ${{ steps.version_info.outputs.build_version }}
|
|
|
+ body: "**Full Changelog**: https://github.com/${{ github.repository }}/compare/${{ steps.version_info.outputs.prev_build_version }}...${{ steps.version_info.outputs.build_version }}"
|
|
|
omitBodyDuringUpdate: true
|
|
|
allowUpdates: true
|
|
|
replacesArtifacts: true
|