-
Notifications
You must be signed in to change notification settings - Fork 47
49 lines (46 loc) · 1.31 KB
/
main.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
name: Build
on:
push:
branches: [ master ]
tags:
- '*'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
permissions:
id-token: write
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install g++ qtbase5-dev qt5-default
python -m pip install --upgrade pip
if [ "${{ matrix.python-version }}" == "3.6" ] || [ "${{ matrix.python-version }}" == "3.7" ]; then
python -m pip install sip==6.5.1 twine
else
python -m pip install sip twine
fi
- name: Build
run: |
sip-sdist
sip-wheel --verbose
mkdir -p dist
mv pywpsrpc-*.tar.gz pywpsrpc-*.whl dist
- name: Upload
if: ${{ github.ref_type == 'tag' || startsWith(github.event.head_commit.message, '[upload]') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true