-
Notifications
You must be signed in to change notification settings - Fork 5
52 lines (41 loc) · 1.03 KB
/
release-deploy.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
51
52
name: release-deploy
on:
release:
types: [ published ]
jobs:
build_deploy:
name: Build and deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: 3.9
- name: Install requirements
run: |
python -m pip install -U pip
python -m pip install twine wheel
- name: Build wheels and sdist
run: |
python setup.py sdist bdist_wheel
- uses: actions/upload-artifact@v4
with:
name: wheels
path: ./dist
- name: Publish package to PyPi
environment:
name: pypi
url: https://pypi.org/project/pylibjpeg/
permissions:
id-token: write
steps:
- name: Download the wheels
uses: actions/download-artifact@v4
with:
path: dist/
merge-multiple: true
- name: Publish package to PyPi
uses: pypa/gh-action-pypi-publish@release/v1