-
Notifications
You must be signed in to change notification settings - Fork 3
50 lines (38 loc) · 1.3 KB
/
packager.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: "📦 Packager"
env:
PROJECT_FOLDER: "plugin_qgis_lpo"
PYTHON_VERSION: 3.9
on:
push:
branches: [ master ]
jobs:
packaging:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
cache: "pip"
cache-dependency-path: "requirements/packaging.txt"
python-version: ${{ env.PYTHON_VERSION }}
- name: Install system requirements
run: |
sudo apt update
sudo apt install qt5-qmake qttools5-dev-tools
- name: Install project requirements
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -U -r requirements/packaging.txt
- name: Update translations
run: pylupdate5 -noobsolete -verbose ${{ env.PROJECT_FOLDER }}/resources/i18n/plugin_translation.pro
- name: Compile translations
run: lrelease ${{ env.PROJECT_FOLDER }}/resources/i18n/*.ts
- name: Package the latest version
run: qgis-plugin-ci package latest --allow-uncommitted-changes
- uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_FOLDER }}-latest
path: ${{ env.PROJECT_FOLDER }}.*.zip
if-no-files-found: error