From 8d251d1dea8718018ad8138185ee45b52300dcab Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 11 Mar 2026 00:37:52 +0000 Subject: [PATCH] add missing compress step --- .github/workflows/release.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e6984ca..1a32320 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -123,13 +123,21 @@ jobs: Write-Host "PDM path: $pdmPath" echo "PDM_BIN=$pdmPath" >> $env:GITHUB_ENV - - name: Build executables + - name: Build artifacts with dynamic taskfile shell: pwsh env: PDM_BIN: ${{ env.PDM_BIN }} run: | Write-Host "Building all executables using dynamic builder..." - task -t Taskfile.dynamic.yml build-all + task --taskfile Taskfile.dynamic.yml build-all + + - name: Compress build artifacts + shell: pwsh + env: + PDM_BIN: ${{ env.PDM_BIN }} + run: | + Write-Host "Compressing build artifacts..." + task --taskfile Taskfile.dynamic.yml compress-all - name: Verify build outputs shell: pwsh