ci(workflows): upload dist directory as artifact
Multi-Platform CI / test-platforms (ubuntu-22.04) (push) Successful in 20s
Multi-Platform CI / test-platforms (windows-latest) (push) Successful in 18s
Multi-Platform CI / Package for Linux x86_64 (push) Successful in 1m10s
Multi-Platform CI / Package for Windows x86_64 (push) Successful in 1m18s

Switch artifact path from explicit tar.gz and zip globs to the
entire dist/ directory to capture all build outputs reliably and
simplify the workflow configuration.
This commit is contained in:
2025-09-23 23:43:17 -07:00
parent b5b6619118
commit 5561118b45
+1 -3
View File
@@ -122,7 +122,5 @@ jobs:
with:
# Create a unique name based on the target OS
name: medicallib-rust-${{ contains(inputs.target, 'windows') && 'Windows' || 'Linux' }}-x86_64-${{ github.run_number }}
path: |
dist/*.tar.gz
dist/*.zip
path: dist/
if-no-files-found: error