Skip to content

Commit 75b198d

Browse files
authored
Merge pull request #29 from shrinishLT/playwright
Changes to update and publish package
2 parents e44545b + 56f184e commit 75b198d

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
options:
1111
- lambdatest-utils
1212
- lambdatest-selenium-driver
13+
- lambdatest-playwright-driver
1314
default: 'lambdatest-utils'
1415

1516
jobs:
@@ -44,4 +45,13 @@ jobs:
4445
run: |
4546
cd selenium
4647
python setup.py sdist bdist_wheel
48+
twine upload dist/*
49+
- name: Build and publish lambdatest-playwright-driver
50+
if: github.event.inputs.package-name == 'lambdatest-playwright-driver'
51+
env:
52+
TWINE_USERNAME: __token__
53+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
54+
run: |
55+
cd playwright
56+
python setup.py sdist bdist_wheel
4757
twine upload dist/*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.3'
1+
__version__ = '1.0.4'

selenium/setup.py

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

88
setup(
99
name="lambdatest-selenium-driver",
10-
version="1.0.3",
10+
version="1.0.4",
1111
author="LambdaTest <[email protected]>",
1212
description="Python Selenium SDK for testing with Smart UI",
1313
long_description=long_description,

utils/lambdatest_sdk_utils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.0.2'

utils/setup.py

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

44
setup(
55
name="lambdatest-sdk-utils",
6-
version="1.0.1",
6+
version="1.0.2",
77
author="LambdaTest <[email protected]>",
88
description="SDK utils",
99
long_description="SDK utils for lambdatest",

0 commit comments

Comments
 (0)