Skip to content

Commit

Permalink
.github: Build separate 22.04 and 20.04 .deb file
Browse files Browse the repository at this point in the history
20.04 deb without webview since the webview one is experimental.
  • Loading branch information
derrod committed Sep 16, 2022
1 parent 3ab3156 commit c053860
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/python.yml
Expand Up @@ -57,7 +57,13 @@ jobs:
path: legendary/dist/*

deb:
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-20.04', 'ubuntu-22.04']
fail-fast: false
max-parallel: 2

steps:
- uses: actions/checkout@v2

Expand All @@ -69,6 +75,10 @@ jobs:
python3-requests
python3-setuptools
python3-wheel

- name: Webview Dependencies
if: matrix.os == 'ubuntu-22.04'
run: sudo apt install
python3-webview
python3-gi
python3-gi-cairo
Expand Down

0 comments on commit c053860

Please sign in to comment.