Skip to content

Commit

Permalink
ci: fix the runner versions
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK authored Jan 14, 2023
1 parent 18a9f20 commit c13f417
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
build:
strategy:
matrix:
os: [windows, macos, ubuntu]
runs-on: ${{ matrix.os }}-latest
os: [ windows-2019, macos-11, ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
concurrency:
group: build-${{ github.workflow }}-${{ matrix.os }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
signing-key: ${{ secrets.SIGNING_KEY }}
signing-password: ${{ secrets.SIGNING_PASSWORD }}
success:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs:
- release
- build
Expand Down

0 comments on commit c13f417

Please sign in to comment.