-
Notifications
You must be signed in to change notification settings - Fork 44
55 lines (51 loc) · 1.3 KB
/
python-publish.yml
File metadata and controls
55 lines (51 loc) · 1.3 KB
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
name: Upload Python Package
on:
push:
tags:
- "v*" # Push events to matching v*, i.e. v0.0.x,
permissions:
contents: read
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Create Release
uses: softprops/action-gh-release@v2
with:
body: |
Changes in this Release
draft: false
name: Release ${{ github.ref }}
prerelease: false
tag_name: ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
deploy:
needs: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build and publish
run: |
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@v1.13.0
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}