Use app icon in UI; update release platform tables #44
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 Web | |
| on: | |
| push: | |
| branches: [main, dev] | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - '.github/workflows/release-*.yml' | |
| - '.github/workflows/deploy-pages.yml' | |
| - 'src-tauri/**' | |
| - 'PKGBUILD' | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-web: | |
| name: Build Web App | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build web app | |
| run: npm run build | |
| - name: Upload web dist | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: web-dist | |
| path: dist/ | |
| retention-days: 7 |