mirror of
https://github.com/derrod/legendary.git
synced 2024-12-22 01:45:28 +00:00
.github: Build separate 22.04 and 20.04 .deb file
20.04 deb without webview since the webview one is experimental.
This commit is contained in:
parent
3ab31561bf
commit
c053860f25
12
.github/workflows/python.yml
vendored
12
.github/workflows/python.yml
vendored
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue