summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-07-18 15:25:09 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-07-18 15:25:09 -0400
commit2b97587a14c596514cdea2f2c624445e272cc127 (patch)
tree65100d0341d423e74436797b5de0404b4fbeb05c /.github
parentecb938c95b66ff58840aae64fd5fb791c55ec080 (diff)
SL-18837: Try to post installer and metadata for GH viewer release.
Diffstat (limited to '.github')
-rw-r--r--.github/release.yaml18
-rw-r--r--.github/workflows/build.yaml12
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 }}