Skip to content
Snippets Groups Projects
Commit 7ad13c85 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

Leverage action-gh-release's new previous_tag input.

This should (!) allow us to generate full release notes relative to the
previous viewer release, instead of letting action-gh-release guess
incorrectly.

Also try again to add to the release page a back-link to the specific build.

(cherry picked from commit 88ebb92f)
parent 7c52db38
No related branches found
No related tags found
No related merge requests found
......@@ -369,20 +369,21 @@ jobs:
# forked from softprops/action-gh-release
- name: Create GitHub release
id: release
uses: secondlife-3p/action-gh-release@v1
uses: secondlife-3p/action-gh-release@feat/add-generateReleaseNotes
with:
# name the release page for the branch
name: "${{ needs.build.outputs.viewer_branch }}"
# SL-20546: want the channel and version to be visible on the
# release page
body: |
Build ${{ github.repositoryUrl }}/actions/runs/${{ github.run_id }}
Build ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
${{ needs.build.outputs.viewer_channel }}
${{ needs.build.outputs.viewer_version }}
${{ needs.build.outputs.relnotes }}
prerelease: true
generate_release_notes: true
target_commitish: ${{ github.sha }}
previous_tag: 7.1.2-release
append_body: true
fail_on_unmatched_files: true
files: |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment