chore(desktop): switch Tauri icon to icons/raven.png and bump version to 0.1.2

This commit is contained in:
Esdras Renan 2025-10-10 21:13:22 -03:00
parent 418599ef62
commit eaea5a6da6
4 changed files with 17 additions and 7 deletions

View file

@ -362,6 +362,13 @@ jobs:
with:
projectPath: apps/desktop
- name: Inject Tauri public key (post)
if: ${{ secrets.TAURI_PUBLIC_KEY != '' }}
env:
TAURI_PUBLIC_KEY: ${{ secrets.TAURI_PUBLIC_KEY }}
run: |
sed -i "s/REPLACE_WITH_TAURI_PUBLIC_KEY/${TAURI_PUBLIC_KEY//\//\\\/}/" apps/desktop/src-tauri/tauri.conf.json || true
- name: Upload latest.json + bundles to VPS
uses: appleboy/scp-action@v0.1.7
with:

View file

@ -50,6 +50,14 @@ jobs:
- name: Install pnpm deps
run: pnpm -C apps/desktop install --frozen-lockfile
- name: Inject Tauri public key
if: ${{ secrets.TAURI_PUBLIC_KEY != '' }}
env:
TAURI_PUBLIC_KEY: ${{ secrets.TAURI_PUBLIC_KEY }}
run: |
set -euo pipefail
sed -i "s/REPLACE_WITH_TAURI_PUBLIC_KEY/${TAURI_PUBLIC_KEY//\//\\\/}/" apps/desktop/src-tauri/tauri.conf.json
- name: Build desktop
env:
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
@ -63,4 +71,3 @@ jobs:
with:
name: desktop-${{ matrix.platform }}
path: apps/desktop/src-tauri/target/release/bundle

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

View file

@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Raven",
"version": "0.1.0",
"version": "0.1.2",
"identifier": "br.com.esdrasrenan.sistemadechamados",
"build": {
"beforeDevCommand": "pnpm run dev",
@ -35,11 +35,7 @@
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
"icons/raven.png"
]
}
}