add missing compress step

This commit is contained in:
onyx-and-iris 2026-03-11 00:37:52 +00:00
parent 5f7d66ceae
commit 8d251d1dea

View File

@ -123,13 +123,21 @@ jobs:
Write-Host "PDM path: $pdmPath" Write-Host "PDM path: $pdmPath"
echo "PDM_BIN=$pdmPath" >> $env:GITHUB_ENV echo "PDM_BIN=$pdmPath" >> $env:GITHUB_ENV
- name: Build executables - name: Build artifacts with dynamic taskfile
shell: pwsh shell: pwsh
env: env:
PDM_BIN: ${{ env.PDM_BIN }} PDM_BIN: ${{ env.PDM_BIN }}
run: | run: |
Write-Host "Building all executables using dynamic builder..." 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 - name: Verify build outputs
shell: pwsh shell: pwsh