diff options
author | Mary <mary@mary.zone> | 2023-05-28 11:34:57 +0200 |
---|---|---|
committer | Mary <mary@mary.zone> | 2023-05-28 11:34:57 +0200 |
commit | e8f5e97fa475e196da4102574725cabd8c9994d5 (patch) | |
tree | 0e70c64f1beb0e1121ec10447bd5ccc1526d9ea1 | |
parent | f3873620a339ef5c6b0cc2602ffe033134a1a300 (diff) |
actions: revert timeout-minutes changes for PR workflow1.1.829
Varibales aren't exposed to PRs...
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index efd7d231..d379437b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: build: name: ${{ matrix.OS_NAME }} (${{ matrix.configuration }}) runs-on: ${{ matrix.os }} - timeout-minutes: ${{ fromJSON(vars.JOB_TIMEOUT) }} + timeout-minutes: 45 strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] @@ -110,7 +110,7 @@ jobs: build_macos: name: macOS Universal (${{ matrix.configuration }}) runs-on: ubuntu-latest - timeout-minutes: ${{ fromJSON(vars.JOB_TIMEOUT) }} + timeout-minutes: 45 strategy: matrix: configuration: [ Debug, Release ] |