Skip to content

Commit 8b321db

Browse files
committed
release 0.1.46
1 parent 8c86830 commit 8b321db

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,19 @@ jobs:
2222
- name: Download Static Library Artifacts
2323
uses: actions/download-artifact@v4
2424
with:
25-
path: ./artifacts/staticlibs
26-
27-
- name: Download Header Artifact
28-
uses: actions/download-artifact@v4
29-
with:
30-
name: liblinmem.h
3125
path: ./artifacts
3226

3327
- name: List Artifacts
3428
run: ls -R ./artifacts
3529

3630
- name: Compress Static Library Files
3731
run: |
38-
for dir in ./artifacts/staticlibs/*; do
32+
for dir in ./artifacts/*; do
3933
if [ -d "$dir" ]; then
4034
base_name=$(basename "$dir")
4135
cd "$dir"
4236
zip "../${base_name}.zip" "${base_name}"
37+
rm "${base_name}" # Remove the uncompressed file
4338
cd - > /dev/null
4439
fi
4540
done

0 commit comments

Comments
 (0)