fix: update tauri script to use Node.js for file copying
Some checks failed
Build / check-version (push) Successful in 4s
Build / build-linux (push) Failing after 4m21s
Build / build-android (push) Has been cancelled
Build / create-release (push) Has been cancelled
Build / build-windows (push) Has been cancelled

This commit is contained in:
2026-01-25 14:09:54 +11:00
parent b6c07916af
commit 2d0398f5d3
2 changed files with 2 additions and 2 deletions

View File

@@ -107,7 +107,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf xdg-utils
- name: Install cinny dependencies
run: cd cinny && npm ci
- name: Install tauri dependencies

View File

@@ -7,7 +7,7 @@
"node": ">=18.0.0"
},
"scripts": {
"tauri": "powershell Copy-Item config.json cinny/; tauri",
"tauri": "node -e \"require('fs').copyFileSync('config.json', 'cinny/config.json')\" && tauri",
"release": "node scripts/release.mjs"
},
"keywords": [],