-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (34 loc) · 1.13 KB
/
publish.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
name: "Publish"
on:
push:
paths:
- 'setup.py'
jobs:
Pipeline:
if: github.ref == 'refs/heads/main' || contains(github.ref, 'hotfix/')
runs-on: ubuntu-22.04
container: quintoandar/python-3-7-java
steps:
- uses: actions/checkout@v2
- name: Build package
run: make package
- name: Get new version
run: echo "version=$(grep __version__ setup.py | head -1 | cut -d \" -f2 | cut -d \' -f2)" >> $GITHUB_ENV
- name: Create release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.version }}
release_name: Release ${{ env.version }}
- name: Check if release already exists
if: ${{ failure() }}
run: echo Release already exist
- name: Install Pypi requirement
run: make requirements-dev
- name: Publish release to pypi.org
if: ${{ success() }}
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: PYTHONPATH=./pip/deps python -m twine upload -u $PYPI_USERNAME -p $PYPI_PASSWORD --verbose dist/*