Skip to content

fix(login): Update import path for LoginViewProps to use new IPC types #10

fix(login): Update import path for LoginViewProps to use new IPC types

fix(login): Update import path for LoginViewProps to use new IPC types #10

Workflow file for this run

name: Automated Release Build
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
name: Build and Publish App Binaries
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Remove local .npmrc to prevent mirror overrides in CI
shell: bash
run: |
rm -f .npmrc
- name: Install Linux Build Dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y rpm libarchive-tools
sudo snap install snapcraft --classic
- name: Initialize Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install Dependencies
run: |
npm ci
- name: Compile and Release Distribution Packages
run: |
npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}