@@ -12,13 +12,14 @@ jobs:
1212 strategy :
1313 fail-fast : false
1414 matrix :
15- os : ['ubuntu-20.04', 'ubuntu- latest']
15+ os : ['ubuntu-latest']
1616 steps :
1717 - uses : actions/checkout@v4
1818 - uses : actions/setup-python@v4
1919 with :
2020 python-version : 3.11
2121 - run : pip install -r requirements.txt
22+ - run : pip install --no-cache-dir flet[all]==0.26.0
2223 - run : python scripts/download-tools.py
2324 - run : pip install black ruff pytest pytest-cov pytest-mock pytest-subprocess
2425 - run : black .
@@ -31,13 +32,14 @@ jobs:
3132 strategy :
3233 fail-fast : false
3334 matrix :
34- os : ['ubuntu-20.04', 'ubuntu- latest', 'macos-latest']
35+ os : ['ubuntu-latest', 'macos-latest']
3536 steps :
3637 - uses : actions/checkout@v4
3738 - uses : actions/setup-python@v4
3839 with :
3940 python-version : 3.11
4041 - run : pip install -r requirements.txt
42+ - run : pip install --no-cache-dir flet[all]==0.26.0
4143 - run : python scripts/download-tools.py
4244 - run : python scripts/build.py
4345 - uses : actions/upload-artifact@v4
5456 with :
5557 python-version : 3.11
5658 - run : pip install -r requirements.txt
59+ - run : pip install --no-cache-dir flet[all]==0.26.0
5760 - run : python scripts/download-tools.py
5861 - run : python scripts/build.py
5962 - uses : actions/upload-artifact@v4
7578 - uses : montudor/action-zip@v1
7679 with :
7780 args : zip -qq -r openandroidinstaller-${{ github.ref_name }}-macos-latest.zip openandroidinstaller-${{ github.ref_name }}-macos-latest
78- - uses : montudor/action-zip@v1
79- with :
80- args : zip -qq -r openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04.zip openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04
8181 - uses : montudor/action-zip@v1
8282 with :
8383 args : zip -qq -r openandroidinstaller-${{ github.ref_name }}-ubuntu-latest.zip openandroidinstaller-${{ github.ref_name }}-ubuntu-latest
9595 title : Release ${{ github.ref_name }}
9696 files : |
9797 openandroidinstaller-${{ github.ref_name }}-macos-latest.zip
98- openandroidinstaller-${{ github.ref_name }}-ubuntu-20.04.zip
9998 openandroidinstaller-${{ github.ref_name }}-ubuntu-latest.zip
10099 openandroidinstaller-${{ github.ref_name }}-windows-latest.zip
0 commit comments