diff --git a/.github/PRERELEASE_NOTES.md b/.github/PRERELEASE_NOTES.md index 3660b2036d..2e6aa9273c 100644 --- a/.github/PRERELEASE_NOTES.md +++ b/.github/PRERELEASE_NOTES.md @@ -1,6 +1,9 @@ Here you will find the build artifacts for the last successful build of the master branch of the Plasma repository. These builds are automatically generated and are not tested. They may include bugs, errors, and partially-completed work. **These are made available for you to use at your own risk.** +> [!IMPORTANT] +> This build corresponds to commit @@COMMIT_SHA@@ + For Age building and development activities, use an **Internal** client. The client for Linux is not functional at this time, but other tools should run as expected. @@ -38,3 +41,5 @@ Linux Clients & Tools * Max 2019: `plasma-windows-x64-max-2019.zip` * Max 2020: `plasma-windows-x64-max-2020.zip` * Max 2022: `plasma-windows-x64-internal-release.zip` +* Max 2023: `plasma-windows-x64-max-2023.zip` +* Max 2024: `plasma-windows-x64-max-2024.zip` diff --git a/.github/workflows/publish-artifacts.yml b/.github/workflows/publish-artifacts.yml index c691b0a234..5ac6ae8397 100644 --- a/.github/workflows/publish-artifacts.yml +++ b/.github/workflows/publish-artifacts.yml @@ -63,7 +63,10 @@ jobs: r="${r//'%'/'%25'}" # Multiline escape sequences for % r="${r//$'\n'/'%0A'}" # Multiline escape sequences for '\n' r="${r//$'\r'/'%0D'}" # Multiline escape sequences for '\r' + r="${r//@@COMMIT_SHA@@/$GITHUB_SHA}" echo "RELEASE_BODY=$r" >> $GITHUB_OUTPUT + env: + GITHUB_SHA: ${{ github.sha }} - name: Update Release id: release