Skip to content

Commit 011aa7d

Browse files
committed
update publish workflow
1 parent faa213c commit 011aa7d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install poetry
24+
pip install poetry twine
2525
poetry install -v
2626
- name: Build and publish
2727
env:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "robotframework-gpio"
3-
version = "0.1.0-beta"
3+
version = "0.1.0-beta1"
44
description = "Robot Framework Library for interfacing GPIO pins on executing robot files on Raspberry Pi's. "
55
authors = ["Yusuf Can Bayrak <[email protected]>"]
66
license = "Apache-2.0"

src/GPIOLibrary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
from GPIOLibrary.keywords import BoardKeywords, GPIOKeywords
1818

19-
__version___ = "0.1.0-beta"
19+
__version___ = "0.1.0-beta1"
2020

2121

2222
class GPIOLibrary(BoardKeywords, GPIOKeywords):

0 commit comments

Comments
 (0)