feat: Add Claude permissions configuration and a Gitea CI/CD workflow for building and releasing the application.
All checks were successful
Build and Release / build-and-release (push) Successful in 30m23s

This commit is contained in:
Bryan1029384756
2026-02-10 21:48:03 -06:00
parent d4f190289d
commit b5f3acd581
2 changed files with 18 additions and 10 deletions

View File

@@ -7,20 +7,27 @@ on:
jobs:
build-and-release:
runs-on: ubuntu-latest
container: electronuserland/builder:wine
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Wine (for Windows cross-compile)
- name: Install required tools
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y wine64 wine32 xvfb
apt-get update && apt-get install -y jq xvfb
- name: Cache npm and Electron
uses: actions/cache@v4
with:
path: |
~/.npm
~/.cache/electron
~/.cache/electron-builder
Frontend/Electron/node_modules
node_modules
key: npm-electron-${{ hashFiles('package-lock.json', 'Frontend/Electron/package-lock.json') }}
restore-keys: |
npm-electron-
- name: Install dependencies
run: |