-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (53 loc) · 2.17 KB
/
release-deploy.yml
File metadata and controls
58 lines (53 loc) · 2.17 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
56
57
58
# 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: Python application
on:
release:
types: [prereleased, released]
jobs:
build:
runs-on: ubuntu-latest
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME_TEST }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD_TEST }}
steps:
- uses: actions/checkout@v2
- name: Get tag version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest setuptools wheel twine build
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
- name: Create Python Distribution
run: |
echo "Python package version: ${{ steps.get_version.outputs.VERSION }}"
sed -i -E -r "s/version = \"(.*)\"/version = \"${{ steps.get_version.outputs.VERSION }}\"/g" setup.py
python -m build
- name: Deploy Distribution to Test PyPI
if: github.event.release.prerelease
uses: pypa/gh-action-pypi-publish@master
with:
user: ${{ secrets.TWINE_USERNAME_TEST }}
password: ${{ secrets.TWINE_PASSWORD_TEST }}
repository_url: https://test.pypi.org/legacy/
- name: Deploy Distribution to PyPI
if: "!github.event.release.prerelease"
uses: pypa/gh-action-pypi-publish@master
with:
user: ${{ secrets.TWINE_USERNAME_PROD }}
password: ${{ secrets.TWINE_PASSWORD_PROD }}