Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,13 @@ jobs:

- name: Build Linux AppImage and deb installers
if: runner.os == 'Linux'
run: pnpm tauri:build --target ${{ matrix.target }} --bundles appimage,deb
env:
# linuxdeploy's bundled strip cannot handle ELF RELR (.relr.dyn).
# APPIMAGE_EXTRACT_AND_RUN lets plugin AppImages run without FUSE.
# -v prints linuxdeploy stderr; Tauri swallows it at default log level.
NO_STRIP: 'true'
APPIMAGE_EXTRACT_AND_RUN: '1'
run: pnpm tauri:build --target ${{ matrix.target }} --bundles appimage,deb -v

- name: Smoke-test the built native application shell
if: runner.os == 'Windows'
Expand Down