Skip to content

Commit 3833c83

Browse files
committed
no
1 parent e9ff1c7 commit 3833c83

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ jobs:
138138
else
139139
echo "VERSION=dev" >> $GITHUB_OUTPUT
140140
fi
141+
- name: Create tar.gz archive (Unix)
142+
if: matrix.target && runner.os != 'Windows'
143+
run: |
144+
cd artifacts
145+
tar -cz9f ../${{ matrix.artifact_name }}_${{ steps.version.outputs.VERSION }}.tar.gz *
141146
- name: Create zip archive (Windows)
142147
if: matrix.target && runner.os == 'Windows'
143148
run: |
@@ -148,7 +153,7 @@ jobs:
148153
if: matrix.target && runner.os != 'Windows'
149154
with:
150155
name: ${{ matrix.artifact_name }}_${{ steps.version.outputs.VERSION }}
151-
path: artifacts
156+
path: ${{ matrix.artifact_name }}_${{ steps.version.outputs.VERSION }}.tar.gz
152157
- name: Upload artifacts (Windows)
153158
uses: actions/upload-artifact@v4
154159
if: matrix.target && runner.os == 'Windows'

0 commit comments

Comments
 (0)