From 5e8cb1cd16fec270d2702751d7f5593e37cc067f Mon Sep 17 00:00:00 2001 From: Adrian Grucza <46910040+apgrucza@users.noreply.github.com> Date: Mon, 13 May 2024 00:37:42 +1000 Subject: [PATCH] Add mimalloc release (#14) --- .github/workflows/main.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 14c7c78..77b59f8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -353,11 +353,25 @@ jobs: retention-days: 5 if-no-files-found: error - - name: Create Release + - name: Create mimalloc Release if: startsWith(github.ref, 'refs/tags/REL-') uses: ncipollo/release-action@v1.14.0 - id: create_release + id: create_mimalloc_release with: + tag: ${{github.ref_name}}-mimalloc + commit: ${{github.sha}} + body: A build of ${{github.ref_name}} that uses the mimalloc allocator for improved performance. + makeLatest: false + draft: false + prerelease: false + token: ${{secrets.RELEASE_TOKEN}} + artifacts: "winbuild/mimalloc/installer/x64/*.ms?,winbuild/mimalloc/installer/x86/*.ms?,winbuild/mimalloc/installer/psqlodbc-setup/bin/Release/psqlodbc-setup.exe" + - name: Create Standard Release + if: startsWith(github.ref, 'refs/tags/REL-') + uses: ncipollo/release-action@v1.14.0 + id: create_standard_release + with: + makeLatest: true draft: false prerelease: false token: ${{secrets.RELEASE_TOKEN}} -- 2.39.5