-
Notifications
You must be signed in to change notification settings - Fork 4
96 lines (80 loc) · 2.48 KB
/
publish_pypi.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Release on PyPI
on:
release:
types:
- published
jobs:
Build:
name: Build package using Poetry
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Set up Poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.8.3"
- name: Create step summary
run: echo "## Building $(poetry version)" >> $GITHUB_STEP_SUMMARY
- name: Build package
run: poetry build >> $GITHUB_STEP_SUMMARY
- name: Store distribution files
uses: actions/upload-artifact@v4
with:
name: distribution
path: dist/
- name: Upload release attachment
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: dist/*
- name: Add to step summary
if: ${{ success() }}
run: echo "### Successfully built package" >> $GITHUB_STEP_SUMMARY
Publish:
name: Publish package to PyPI
runs-on: ubuntu-latest
needs: build
if: needs.build.result == 'success'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Set up Poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.8.3"
- name: Create step summary
run: echo "## Publishing $(poetry version) to PyPI" >> $GITHUB_STEP_SUMMARY
- name: Retrieve distribution files
uses: actions/[email protected]
with:
name: distribution
path: dist/
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish >> $GITHUB_STEP_SUMMARY
- name: Add to step summary
if: ${{ success() }}
run: |
echo "### Successfully published package on PyPI" >> $GITHUB_STEP_SUMMARY
PKGVER=$(poetry version)
SUBURL="${PKGVER// //}"
echo "https://pypi.org/project/$SUBURL/" >> $GITHUB_STEP_SUMMARY
Bump:
name: Bump to (next) dev version
needs: publish
if: ${{ needs.publish.result == 'success' }}
uses: AstarVienna/DevOps/.github/workflows/bump.yml@main
secrets: inherit
with:
rule: prerelease
branch: main