diff options
| author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-05-13 13:24:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-13 13:24:43 +0200 |
| commit | aae4595bdbf16ebfc73299fa63ae7dffb8300d56 (patch) | |
| tree | b1af5a7c090df4575ffe1ffffcf3e9e5747ae95d /.github/workflows/release.yml | |
| parent | 880fd3cfcb1c394b06bdb4cd3433e23379b4fbe7 (diff) | |
Add timeout of 35 minutes to workflow jobs (#4928)
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 363e9cad..a3203319 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,6 +46,7 @@ jobs: release: name: Release ${{ matrix.OS_NAME }} runs-on: ${{ matrix.os }} + timeout-minutes: 35 strategy: matrix: os: [ ubuntu-latest, windows-latest ] @@ -143,13 +144,14 @@ jobs: macos_release: name: Release MacOS universal runs-on: ubuntu-latest + timeout-minutes: 35 steps: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: global-json-file: global.json - + - name: Setup LLVM 14 run: | wget https://apt.llvm.org/llvm.sh @@ -205,4 +207,4 @@ jobs: needs: release with: ryujinx_version: "1.1.${{ github.run_number }}" - secrets: inherit + secrets: inherit
\ No newline at end of file |
