-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (44 loc) · 1.29 KB
/
release.yaml
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
name: Release
# release on push version tag, e.g. v0.3.2
on:
push:
tags:
- 'v*.*.*'
permissions:
contents: write
env:
PYTHON_VERSION: 3.11
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install poetry
run: pip install poetry
- name: Determine dependencies
run: poetry lock
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Check if tag matches the package version
run: |
PKG_VERSION=$(poetry version -s)
TAG = ${GITHUB_REF#refs/tags/}
if [[ "v$PKG_VERSION" != $TAG ]]; then
echo "Error: Tag ($TAG) does not match the package version (v$PKG_VERSION)."
exit 1
- name: Install Dependencies using Poetry
run: poetry build
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
artifacts: "dist/*"
- name: Publish to PyPi
env:
PYPI_USERNAME: __token__
PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: poetry publish --username $PYPI_USERNAME --password $PYPI_PASSWORD