-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (37 loc) · 1.07 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
name: release
on:
push:
branches:
- main
jobs:
release_please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release_please
with:
config-file: .github/release-please-config.json
manifest-file: .github/release-please-manifest.json
outputs:
release_created: ${{ steps.release_please.outputs.release_created }}
sha: ${{ steps.release_please.outputs.sha }}
pypi_upload:
runs-on: ubuntu-latest
needs: release_please
if: needs.release_please.outputs.release_created
steps:
- uses: actions/checkout@v4
with:
ref: ${{ needs.release_please.outputs.sha }}
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Create release assets
run: |
set -euxo pipefail
python3 -m pip install -U setuptools wheel
python3 setup.py sdist bdist_wheel
ls dist
- uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}