-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (34 loc) · 837 Bytes
/
release.yml
File metadata and controls
42 lines (34 loc) · 837 Bytes
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
name: Upload Python Package
on:
workflow_dispatch:
release:
types: [published]
permissions:
contents: read
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/project/thread
permissions:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
set -xe
python -m pip install poetry
python -m poetry install
- name: Build Thread
run: |
set -xe
python -m poetry build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1