Skip to content

Commit

Permalink
Fix schedule-ran autodl, no input.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerivec committed Nov 3, 2024
1 parent b41af97 commit 5ccfad1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_autodl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 5ccfad1

Please sign in to comment.