Update build-lkm.yml to force uploading inputs to be required, default value changed to true

This commit is contained in:
ShirkNeko
2025-04-13 02:26:26 +08:00
parent 8bf9828c80
commit 74bb90b3d8

View File

@@ -3,9 +3,9 @@ on:
workflow_call:
inputs:
upload:
required: false
required: true
type: boolean
default: false
default: true
description: "Whether to upload to branch"
secrets:
# username:github_pat
@@ -14,9 +14,9 @@ on:
workflow_dispatch:
inputs:
upload:
required: false
required: true
type: boolean
default: false
default: true
description: "Whether to upload to branch"
jobs:
build-lkm: