ci: add portable build 0.7.5
This commit is contained in:
28
.github/workflows/manual-build-portable.yml
vendored
Normal file
28
.github/workflows/manual-build-portable.yml
vendored
Normal 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 }}
|
||||
Reference in New Issue
Block a user