We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c86830 commit 8b321dbCopy full SHA for 8b321db
.github/workflows/release.yml
@@ -22,24 +22,19 @@ jobs:
22
- name: Download Static Library Artifacts
23
uses: actions/download-artifact@v4
24
with:
25
- path: ./artifacts/staticlibs
26
-
27
- - name: Download Header Artifact
28
- uses: actions/download-artifact@v4
29
- with:
30
- name: liblinmem.h
31
path: ./artifacts
32
33
- name: List Artifacts
34
run: ls -R ./artifacts
35
36
- name: Compress Static Library Files
37
run: |
38
- for dir in ./artifacts/staticlibs/*; do
+ for dir in ./artifacts/*; do
39
if [ -d "$dir" ]; then
40
base_name=$(basename "$dir")
41
cd "$dir"
42
zip "../${base_name}.zip" "${base_name}"
+ rm "${base_name}" # Remove the uncompressed file
43
cd - > /dev/null
44
fi
45
done
0 commit comments