diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-07-18 15:25:09 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-07-18 15:25:09 -0400 |
commit | 2b97587a14c596514cdea2f2c624445e272cc127 (patch) | |
tree | 65100d0341d423e74436797b5de0404b4fbeb05c /.github/workflows | |
parent | ecb938c95b66ff58840aae64fd5fb791c55ec080 (diff) |
SL-18837: Try to post installer and metadata for GH viewer release.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9b56d800f7..517efa6fc6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -232,3 +232,15 @@ jobs: # emitted by build.sh, zero or one lines path: | ${{ steps.build.outputs.physicstpv }} + + release: + needs: build + runs-on: [ubuntu-latest] + if: startsWith(github.ref, 'refs/tags/v') + steps: + - uses: softprops/action-gh-release@v1 + with: + generate_release_notes: true + files: | + ${{ steps.build.outputs.installer }} + ${{ steps.build.outputs.metadata }} |