mirror of
https://github.com/itsRevela/Revelations-Launcher.git
synced 2026-05-21 18:54:29 +00:00
fix: disable binary stripping for Linux AppImage builds
Stripping symbols from the AppImage binary removes entries required by WebKitGTK/EGL, causing EGL display initialization to fail on launch. Set NO_STRIP=true for Linux CI builds and document it for local builds.
This commit is contained in:
1
.github/workflows/nightly.yml
vendored
1
.github/workflows/nightly.yml
vendored
@@ -95,6 +95,7 @@ jobs:
|
||||
uses: tauri-apps/tauri-action@v0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NO_STRIP: ${{ matrix.platform == 'ubuntu-22.04' && 'true' || '' }}
|
||||
with:
|
||||
args: ${{ matrix.args }}
|
||||
|
||||
|
||||
1
.github/workflows/publish.yml
vendored
1
.github/workflows/publish.yml
vendored
@@ -113,6 +113,7 @@ jobs:
|
||||
uses: tauri-apps/tauri-action@v0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NO_STRIP: ${{ matrix.platform == 'ubuntu-22.04' && 'true' || '' }}
|
||||
with:
|
||||
tagName: v__VERSION__
|
||||
releaseName: 'Revelations v__VERSION__'
|
||||
|
||||
Reference in New Issue
Block a user