From df9d0f2e4b62eb720eeb9808388ec06923a0296b Mon Sep 17 00:00:00 2001 From: Bryan1029384756 <23323626+Bryan1029384756@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:56:00 -0600 Subject: [PATCH] feat: Introduce Claude AI permissions configuration and a Gitea Actions workflow for automated Electron application builds and releases. --- .claude/settings.local.json | 3 ++- .gitea/workflows/release.yml | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 8003e1c..858b909 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -29,7 +29,8 @@ "Bash(cd:*)", "Bash(ls:*)", "Bash(xargs:*)", - "Bash(node -p:*)" + "Bash(node -p:*)", + "Bash(npm ls:*)" ] } } diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 3714c29..03b774a 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -56,7 +56,9 @@ jobs: npm-electron- - name: Install dependencies - run: npm install + run: | + npm install + chmod +x node_modules/app-builder-bin/linux/x64/app-builder - name: Read version from package.json id: version