actions: Workaround YAML limitation for timeout-minutes

Because Github Actions wants an int, we use fromJSON to hack around
this.
This commit is contained in:
Mary
2023-05-28 08:08:47 +02:00
parent 986ac9ff83
commit f3873620a3
4 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ concurrency: flatpak-release
jobs:
release:
timeout-minutes: ${{ vars.JOB_TIMEOUT }}
timeout-minutes: ${{ fromJSON(vars.JOB_TIMEOUT) }}
runs-on: ubuntu-latest
env: