fix: fixing translation update #723
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Linux | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| # Set up Node.js | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25 | |
| # Install dependencies | |
| - name: Install dependencies | |
| run: npm install && npm install electron | |
| # Build the Electron app | |
| - name: Build Electron app | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| run: npx electron-builder --linux AppImage --linux rpm --linux deb --x64 --publish always |