fix(ci): resolve input str -> num conversion (#20169)

This commit is contained in:
Jirka Borovec 2024-08-07 10:59:05 +02:00 committed by GitHub
parent cf24a190ce
commit 2129fdf362
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -37,4 +37,4 @@ jobs:
scripts-ref: v0.11.6
dry-run: ${{ github.event_name == 'pull_request' }}
pattern: ${{ inputs.pattern || 'pypi_wheels' }} # setting str in case of PR / debugging
age-days: ${{ inputs.age-days || 0 }} # setting 0 in case of PR / debugging
age-days: ${{ fromJSON(inputs.age-days) || 0 }} # setting 0 in case of PR / debugging