-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.38 KB
/
release.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
53
54
55
56
57
58
59
60
name: Build and publish
# Run on PR requests. And on master itself.
on:
push:
branches:
- main # just build the sdist skip release
tags:
- "*"
pull_request: # also build on PRs touching some files
paths:
- ".github/workflows/release.yml"
- "MANIFEST.in"
- "setup.cfg"
- "setup.py"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Build a source tarball
run: |
python -m pip install build
python -m build
- uses: actions/upload-artifact@v3
with:
path: ./dist/*
retention-days: 5
publish:
name: Publish on GitHub and PyPI
needs: [build]
runs-on: ubuntu-latest
# release on every tag
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- name: Upload Github release
id: upload-release-asset
uses: softprops/action-gh-release@v1
- name: Upload Release Assets to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}