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: workflow_call:
inputs: inputs:
upload: upload:
required: false required: true
type: boolean type: boolean
default: false default: true
description: "Whether to upload to branch" description: "Whether to upload to branch"
secrets: secrets:
# username:github_pat # username:github_pat
@@ -14,9 +14,9 @@ on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
upload: upload:
required: false required: true
type: boolean type: boolean
default: false default: true
description: "Whether to upload to branch" description: "Whether to upload to branch"
jobs: jobs:
build-lkm: build-lkm: