-
Notifications
You must be signed in to change notification settings - Fork 3
47 lines (40 loc) · 1.28 KB
/
publish_package.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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build and Publish Package
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Build package
run: |
poetry --version
poetry build
- name: Publish package
run: |
poetry publish -u "__token__" -p ${{ secrets.PYPI_API_TOKEN }}
- name: Get Package Version
id: get_version
shell: bash
run: |
echo "::set-output name=name::$(poetry version)"
echo "::set-output name=version::$(poetry version | cut -d " " -f 2)"
- name: Release With Assets
uses: softprops/action-gh-release@v1
with:
name: ${{ steps.get_version.outputs.name }}
tag_name: ${{ steps.get_version.outputs.version }}
files: ./dist/*.whl