ci: add portable build 0.7.5

This commit is contained in:
Minh141120
2026-01-10 14:32:32 +07:00
parent 4b13100f67
commit 5a26db0c2b

View File

@@ -0,0 +1,28 @@
name: Manual build portable (windows)
on:
workflow_dispatch:
inputs:
build_ref:
description: "Code ref to build
required: true
default: "refs/tags/v0.7.5"
version:
description: "Version to stamp into the app"
required: true
default: "0.7.5"
channel:
description: "stable/beta/nightly"
required: true
default: "stable"
jobs:
build-windows-portable:
# IMPORTANT: this loads the template workflow from main (where your portable steps exist)
uses: janhq/jan/.github/workflows/template-tauri-build-windows-x64.yml@main
secrets: inherit
with:
ref: ${{ inputs.build_ref }}
public_provider: none
channel: ${{ inputs.channel }}
new_version: ${{ inputs.version }}