Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,11 @@ jobs:
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev \
libappindicator3-dev librsvg2-dev patchelf libasound2-dev
- run: npm ci
# macOS signing — configure these secrets in repo settings when ready:
# APPLE_CERTIFICATE, APPLE_CERTIFICATE_PASSWORD, APPLE_SIGNING_IDENTITY,
# APPLE_ID, APPLE_PASSWORD, APPLE_TEAM_ID
- name: Build Tauri app
uses: tauri-apps/tauri-action@v0
env:
# macOS signing (configure secrets in repo settings):
# APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
# APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
# APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
# APPLE_ID: ${{ secrets.APPLE_ID }}
# APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
# APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
with:
args: --target ${{ matrix.target }}
- name: Upload build artifacts
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:

jobs:
test-rust:
name: unit-test-rust
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -27,6 +28,7 @@ jobs:

test-frontend:
runs-on: ubuntu-latest
name: unit-test-frontend
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
Expand All @@ -40,6 +42,7 @@ jobs:
- run: npm run lint

typecheck:
name: typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -51,6 +54,7 @@ jobs:
- run: npm run typecheck

audit-rust:
name: audit-rust
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down
Loading