Skip to content

Commit

Permalink
Fix debian publish phase in CI
Browse files Browse the repository at this point in the history
The Ubuntu version needs to be different depending on the debian version we're trying to build.
  • Loading branch information
adejanovski committed Apr 9, 2022
1 parent 0bf040e commit d87068d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,12 @@ jobs:
strategy:
matrix:
suite: [focal, bionic]
runs-on: ubuntu-18.04
include:
- suite: focal
os-version: ubuntu-20.04
- suite: bionic
os-version: ubuntu-18.04
runs-on: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v2
- name: Install dependencies
Expand Down

0 comments on commit d87068d

Please sign in to comment.