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 +