-
Notifications
You must be signed in to change notification settings - Fork 18
45 lines (36 loc) · 1.1 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
name: "📦 Packager"
env:
PROJECT_FOLDER: "gml_application_schema_toolbox"
PYTHON_VERSION: 3.8
on:
push:
branches: [master]
jobs:
packaging:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4.2.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Cache dependencie
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install project requirements
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -U -r requirements/packaging.txt
- name: Package the latest version
run: |
qgis-plugin-ci package --allow-uncommitted-changes latest
- uses: actions/upload-artifact@v3
with:
name: ${{ env.PROJECT_FOLDER }}-latest
path: ${{ env.PROJECT_FOLDER }}.*.zip
if-no-files-found: error