trying to prepare for an appimage as well as prevent issues with compositing_mode stuff
This commit is contained in:
5
.github/workflows/release.yaml
vendored
5
.github/workflows/release.yaml
vendored
@@ -11,7 +11,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform: [ubuntu-22.04, windows-latest]
|
||||
platform: [ubuntu-22.04, windows-latest, ]
|
||||
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
@@ -33,13 +33,14 @@ jobs:
|
||||
if: matrix.platform == 'ubuntu-22.04'
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
||||
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libfuse2
|
||||
- name: install pnpm packages
|
||||
run: pnpm install
|
||||
- name: build Oxyde
|
||||
uses: tauri-apps/tauri-action@v0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NO_STRIP: true
|
||||
SURREAL_URL: ${{ secrets.SURREAL_URL }}
|
||||
SURREAL_NS: ${{ secrets.SURREAL_NS }}
|
||||
SURREAL_DB: ${{ secrets.SURREAL_DB }}
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
#!/usr/bin/bash
|
||||
WEBKIT_DISABLE_DMABUF_RENDERER=1 pnpm tauri dev
|
||||
@@ -2,5 +2,8 @@
|
||||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
fn main() {
|
||||
#[cfg(target_os = "linux")]
|
||||
std::env::set_var("WEBKIT_DISABLE_COMPOSITING_MODE", "1");
|
||||
|
||||
oxyde_lib::run()
|
||||
}
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": ["deb", "nsis"],
|
||||
"targets": ["deb", "nsis", "appimage"],
|
||||
"icon": [
|
||||
"icons/32x32.png",
|
||||
"icons/128x128.png",
|
||||
|
||||
Reference in New Issue
Block a user