-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (59 loc) · 1.63 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
61
62
63
64
65
66
67
68
name: Build sdist and wheels and publish them to PyPI when a release tag is created in master branch
on:
push:
branches:
- master
tags:
- v*
workflow_dispatch:
jobs:
build_dist:
name: Build distribution
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Set up pip cache
if: runner.os == 'Linux'
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
restore-keys: ${{ runner.os }}-pip-
- name: Install hatch
run: |
pipx install hatch
hatch --version
- name: Build the package
run: |
hatch build
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
path: dist/*
if-no-files-found: error
publish:
if: contains(github.ref, '/tags/v')
needs: [build_dist]
runs-on: ubuntu-latest
environment: PyPI Release
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
name: artifact
path: dist
- name: Publish sdist and wheels to PyPI
uses: pypa/gh-action-pypi-publish@v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verify-metadata: false