From 9b6515aab3e62255911bcfdb87b751914f7c2a29 Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Thu, 16 Apr 2026 20:35:59 +0200 Subject: [PATCH] fix(ci): _locales/ in alle Release-ZIPs aufnehmen Manifest nutzt __MSG_extName__ / __MSG_extDesc__ mit default_locale, aber die _locales/ Dateien fehlten in allen drei ZIP-Befehlen. Ohne sie kann der Browser die Extension nicht laden. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 246eb29..27963af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: run: | mkdir -p dist zip -r "dist/hellion-newtab-${{ steps.version.outputs.tag }}-chrome.zip" \ - manifest.json newtab.html src/js/*.js src/css/ assets/ \ + manifest.json newtab.html src/js/*.js src/css/ assets/ _locales/ \ -x "*.git*" "dist/*" ".github/*" "src/js/opera/*" - name: Create Firefox ZIP (Manifest V3) @@ -33,7 +33,7 @@ jobs: cp manifest.json manifest.chrome-backup.json cp manifest.firefox.json manifest.json zip -r "dist/hellion-newtab-${{ steps.version.outputs.tag }}-firefox.zip" \ - manifest.json newtab.html src/js/*.js src/css/ assets/ \ + manifest.json newtab.html src/js/*.js src/css/ assets/ _locales/ \ -x "*.git*" "dist/*" ".github/*" "manifest.chrome-backup.json" "manifest.firefox.json" "src/js/opera/*" mv manifest.chrome-backup.json manifest.json @@ -42,7 +42,7 @@ jobs: cp manifest.json manifest.chrome-backup.json cp manifest.opera.json manifest.json zip -r "dist/hellion-newtab-${{ steps.version.outputs.tag }}-opera.zip" \ - manifest.json newtab.html src/js/*.js src/js/opera/ src/css/ assets/ \ + manifest.json newtab.html src/js/*.js src/js/opera/ src/css/ assets/ _locales/ \ -x "*.git*" "dist/*" ".github/*" "manifest.chrome-backup.json" "manifest.opera.json" mv manifest.chrome-backup.json manifest.json