Skip to content

Commit a8f9aff

Browse files
committed
Use 7z again for artifact compression
1 parent 52238dc commit a8f9aff

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/sample-builder.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,16 +295,17 @@ jobs:
295295
296296
- name: Bundle artifacts
297297
working-directory: ${{ github.workspace }}/out/install
298+
shell: bash
298299
run: |
299300
mv Release LuxCore
300-
zip -9 --symlinks -r ${{ github.workspace }}/LuxCoreSamples-${{ runner.os }}-${{ runner.arch }}.zip LuxCore/
301+
7z a -snl ${{ github.workspace }}/LuxCoreSamples-${{ runner.os }}-${{ runner.arch }}.zip LuxCore/
301302
302303
# Upload artifacts
303304
- uses: actions/upload-artifact@v4
304305
id: upload
305306
with:
306307
name: LuxCore-Samples-${{ runner.os }}-${{ runner.arch }}
307-
path: ${{ github.workspace }}/LuxCoreSamples.zip
308+
path: ${{ github.workspace }}/LuxCoreSamples-${{ runner.os }}-${{ runner.arch }}.zip
308309
#path: ${{ github.workspace }}/out/install/Release
309310

310311
attest-samples:

0 commit comments

Comments
 (0)