Skip to content

Commit 88ebb92

Browse files
committed
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.
1 parent 4edd78f commit 88ebb92

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,20 +369,21 @@ jobs:
369369
# forked from softprops/action-gh-release
370370
- name: Create GitHub release
371371
id: release
372-
uses: secondlife-3p/action-gh-release@v1
372+
uses: secondlife-3p/action-gh-release@feat/add-generateReleaseNotes
373373
with:
374374
# name the release page for the branch
375375
name: "${{ needs.build.outputs.viewer_branch }}"
376376
# SL-20546: want the channel and version to be visible on the
377377
# release page
378378
body: |
379-
Build ${{ github.repositoryUrl }}/actions/runs/${{ github.run_id }}
379+
Build ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
380380
${{ needs.build.outputs.viewer_channel }}
381381
${{ needs.build.outputs.viewer_version }}
382382
${{ needs.build.outputs.relnotes }}
383383
prerelease: true
384384
generate_release_notes: true
385385
target_commitish: ${{ github.sha }}
386+
previous_tag: 7.1.2-release
386387
append_body: true
387388
fail_on_unmatched_files: true
388389
files: |

0 commit comments

Comments
 (0)