Skip to content

Commit

Permalink
version 1.8.12
Browse files Browse the repository at this point in the history
another test of github actions
  • Loading branch information
elesiuta committed Dec 6, 2020
1 parent 80b9d42 commit 846c36e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
run: |
python setup.py sdist bdist_wheel
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down
2 changes: 1 addition & 1 deletion backupy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


def getVersion() -> str:
return "1.8.11"
return "1.8.12"


def getString(text: str) -> str:
Expand Down

0 comments on commit 846c36e

Please sign in to comment.