From f49767c38b2c40d09813b0ac2b6af9c6f4ba9e0e Mon Sep 17 00:00:00 2001 From: Syngnat Date: Wed, 4 Feb 2026 17:17:02 +0800 Subject: [PATCH] =?UTF-8?q?=20=F0=9F=90=9B=20fix(workflows):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8Dactions=E8=AF=AD=E6=B3=95=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 18 +++++++++--------- frontend/wailsjs/runtime/package.json | 0 frontend/wailsjs/runtime/runtime.d.ts | 0 frontend/wailsjs/runtime/runtime.js | 0 4 files changed, 9 insertions(+), 9 deletions(-) mode change 100755 => 100644 frontend/wailsjs/runtime/package.json mode change 100755 => 100644 frontend/wailsjs/runtime/runtime.d.ts mode change 100755 => 100644 frontend/wailsjs/runtime/runtime.js diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 90f1798..3fb3966 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -204,15 +204,15 @@ jobs: cp "$TARGET" AppDir/usr/bin/gonavi # Create desktop file - cat > AppDir/usr/share/applications/gonavi.desktop << 'EOF' -[Desktop Entry] -Name=GoNavi -Exec=gonavi -Icon=gonavi -Type=Application -Categories=Development;Database; -Comment=Database Management Tool -EOF + printf '%s\n' \ + '[Desktop Entry]' \ + 'Name=GoNavi' \ + 'Exec=gonavi' \ + 'Icon=gonavi' \ + 'Type=Application' \ + 'Categories=Development;Database;' \ + 'Comment=Database Management Tool' \ + > AppDir/usr/share/applications/gonavi.desktop cp AppDir/usr/share/applications/gonavi.desktop AppDir/gonavi.desktop diff --git a/frontend/wailsjs/runtime/package.json b/frontend/wailsjs/runtime/package.json old mode 100755 new mode 100644 diff --git a/frontend/wailsjs/runtime/runtime.d.ts b/frontend/wailsjs/runtime/runtime.d.ts old mode 100755 new mode 100644 diff --git a/frontend/wailsjs/runtime/runtime.js b/frontend/wailsjs/runtime/runtime.js old mode 100755 new mode 100644