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

Try to generate release notes for this specific branch.

Also try to cross-reference release page and build page.
parent ae7b318e
No related branches found
No related tags found
No related merge requests found
...@@ -367,25 +367,30 @@ jobs: ...@@ -367,25 +367,30 @@ jobs:
mv newview/viewer_version.txt macOS-viewer_version.txt mv newview/viewer_version.txt macOS-viewer_version.txt
# forked from softprops/action-gh-release # forked from softprops/action-gh-release
- uses: secondlife-3p/action-gh-release@v1 - name: Create GitHub release
id: release
uses: secondlife-3p/action-gh-release@v1
with: with:
# name the release page for the build number so we can find it # name the release page for the branch
# easily (analogous to looking up a codeticket build page) name: "${{ needs.build.outputs.viewer_branch }}"
name: "v${{ github.run_id }}"
# SL-20546: want the channel and version to be visible on the # SL-20546: want the channel and version to be visible on the
# release page # release page
body: | body: |
Build ${{ github.repositoryUrl }}/actions/runs/${{ github.run_id }}
${{ needs.build.outputs.viewer_channel }} ${{ needs.build.outputs.viewer_channel }}
${{ needs.build.outputs.viewer_version }} ${{ needs.build.outputs.viewer_version }}
${{ needs.build.outputs.viewer_branch }}
${{ needs.build.outputs.relnotes }} ${{ needs.build.outputs.relnotes }}
prerelease: true prerelease: true
generate_release_notes: true generate_release_notes: true
target_commitish: ${{ github.ref }}
append_body: true append_body: true
# the only reason we generate a GH release is to post build products
fail_on_unmatched_files: true fail_on_unmatched_files: true
files: | files: |
*.dmg *.dmg
*.exe *.exe
*-autobuild-package.xml *-autobuild-package.xml
*-viewer_version.txt *-viewer_version.txt
- name: post release URL
run: |
echo "::notice::Release ${{ steps.release.outputs.url }}"
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