add version input to build workflows and update deployment scripts

This commit is contained in:
uncor3
2025-11-19 20:31:32 -08:00
parent 537b081353
commit b248d30366
6 changed files with 114 additions and 95 deletions
+12
View File
@@ -2,6 +2,18 @@ name: Build Windows
on:
workflow_dispatch:
inputs:
version:
description: "Build version (e.g., v1.2.3)"
required: true
default: "dev"
workflow_call:
inputs:
version:
description: "Build version (e.g., v1.2.3)"
required: true
type: string
default: "dev"
env:
QT_VERSION: "6.8.0"
GO_VERSION: "1.23.0"