Skip to content

chore: comment out unused functions #24

chore: comment out unused functions

chore: comment out unused functions #24

Workflow file for this run

name: Build Windows Tauri App
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 25
cache: pnpm
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Install frontend dependencies
run: pnpm install --frozen-lockfile
- name: Build Tauri app
run: pnpm tauri build
- name: Upload Windows artifacts
uses: actions/upload-artifact@v4
with:
name: vrcmrd-windows
if-no-files-found: error
path: |
src-tauri/target/release/vrcmrd.exe
src-tauri/target/release/bundle/msi/**/vrcmrd_*.msi
src-tauri/target/release/bundle/nsis/**/vrcmrd_*-setup.exe