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 | |
parent | ecb938c95b66ff58840aae64fd5fb791c55ec080 (diff) |
SL-18837: Try to post installer and metadata for GH viewer release.
Diffstat (limited to '.github')
-rw-r--r-- | .github/release.yaml | 18 | ||||
-rw-r--r-- | .github/workflows/build.yaml | 12 |
2 files changed, 30 insertions, 0 deletions
diff --git a/.github/release.yaml b/.github/release.yaml new file mode 100644 index 0000000000..0f4884c944 --- /dev/null +++ b/.github/release.yaml @@ -0,0 +1,18 @@ +changelog:
+ exclude:
+ labels:
+ - ignore-for-release
+ authors:
+ - dependabot
+ categories:
+ - title: Breaking Changes ðŸ›
+ labels:
+ - semver-major
+ - breaking-change
+ - title: New Features 🎉
+ labels:
+ - semver-minor
+ - enhancement
+ - title: Other Changes
+ labels:
+ - '*'
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 }} |