Skip to content

Use app icon in UI; update release platform tables #44

Use app icon in UI; update release platform tables

Use app icon in UI; update release platform tables #44

Workflow file for this run

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