-
-
Notifications
You must be signed in to change notification settings - Fork 114
37 lines (37 loc) · 938 Bytes
/
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
name: Release
on:
push:
tags:
- "*"
jobs:
release-pypi:
name: release-pypi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: build
run: |
poetry build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: "${{ secrets.PYPI_API_TOKEN }}"
- name: Create Release
uses: actions/create-release@main
env:
GITHUB_TOKEN: "${{ secrets.GH_PAT }}"
with:
tag_name: "${{ github.ref }}"
release_name: "v${{ github.ref }}"
draft: true
prerelease: false