summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Grucza2024-05-12 14:37:42 +0000
committerGitHub2024-05-12 14:37:42 +0000
commit5e8cb1cd16fec270d2702751d7f5593e37cc067f (patch)
tree08d6619f359f45f15a0968b032aace3c7fdba6d8
parentbd384d4dee27c36a0e6cd273e28ffc3aec05e8bb (diff)
Add mimalloc release (#14)
-rw-r--r--.github/workflows/main.yml18
1 files 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}}