From f634e882d5c9be467b5d2a90e965c6b5affc27fb Mon Sep 17 00:00:00 2001 From: "Sarver, Edwin" Date: Thu, 15 Aug 2024 15:08:54 -0400 Subject: [PATCH] Autorelease --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e1b07c9..c5a0dfc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,4 +32,20 @@ jobs: name: ${{matrix.os}}-build path: | ${{github.workspace}}/build/out/* + release: + runs-on: ubuntu-latest + steps: + - name: Get Artifacts + uses: actions/download-artifact@v4 + with: + path: artifacts + merge-multiple: true + - name: Release + uses: ncipollo/release-action@v1 + with: + allowUpdates: true + artifacts: artifacts/* + generateReleaseNotes: true + makeLatest: true +