mirror of
https://github.com/Koenkk/zigbee-OTA.git
synced 2026-06-24 10:58:33 +00:00
Fix schedule-ran autodl, no input.
This commit is contained in:
4
.github/workflows/run_autodl.yml
vendored
4
.github/workflows/run_autodl.yml
vendored
@@ -49,8 +49,8 @@ jobs:
|
||||
uses: actions/github-script@v7
|
||||
env:
|
||||
NODE_EXTRA_CA_CERTS: cacerts.pem
|
||||
PREV: ${{ fromJSON(inputs.prev) && '1' || '' }}
|
||||
IGNORE_CACHE: ${{ fromJSON(inputs.ignore_cache) && '1' || '' }}
|
||||
PREV: ${{ inputs.prev == 'true' && '1' || '' }}
|
||||
IGNORE_CACHE: ${{ inputs.ignore_cache == 'true' && '1' || '' }}
|
||||
with:
|
||||
script: |
|
||||
const {runAutodl} = await import("${{ github.workspace }}/dist/ghw_run_autodl.js")
|
||||
|
||||
Reference in New Issue
Block a user