Skip to content

Commit 6c25de8

Browse files
committed
Merge branch 'vk/3049-browser-extensio': Fix Linux build artifacts
2 parents 3a32cc2 + bf174b1 commit 6c25de8

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,14 @@ jobs:
264264
265265
# Copy only final distribution files (not intermediate builds or debug files)
266266
# Exclude: extension/, mas-arm64/, mac-arm64/ (intermediate builds)
267-
# Include: *.dmg, *.zip, *.pkg, *.blockmap files
267+
# Include: *.dmg, *.zip, *.pkg, *.blockmap, *.AppImage, *.deb files
268268
find dist -type f \( \
269269
-name "*.dmg" -o \
270270
-name "*.zip" -o \
271271
-name "*.pkg" -o \
272-
-name "*.blockmap" \
272+
-name "*.blockmap" -o \
273+
-name "*.AppImage" -o \
274+
-name "*.deb" \
273275
\) -not -path "*/extension/*" \
274276
-not -path "*/mas-arm64/*" \
275277
-not -path "*/mac-arm64/*" \
@@ -302,7 +304,7 @@ jobs:
302304
name: ${{ matrix.artifact_name }}-build
303305
path: artifacts-to-upload/
304306
retention-days: 30
305-
if-no-files-found: error
307+
if-no-files-found: ${{ matrix.platform == 'linux' && 'warn' || 'error' }}
306308

307309
- name: Upload artifacts (Windows)
308310
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)