Skip to content

Commit d0466c2

Browse files
authored
Merge pull request #7 from pawan-lambda/workflow
Workflow
2 parents f5ed514 + ed632a5 commit d0466c2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ jobs:
3030
- name: Build and publish lambdatest-utils
3131
if: github.event.inputs.package-name == 'lambdatest-utils'
3232
env:
33-
PYPI_USERNAME: __token__
34-
PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
33+
TWINE_USERNAME: __token__
34+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
3535
run: |
3636
cd utils
3737
python setup.py sdist bdist_wheel
3838
twine upload dist/*
3939
- name: Build and publish lambdatest-selenium-driver
4040
if: github.event.inputs.package-name == 'lambdatest-selenium-driver'
4141
env:
42-
PYPI_USERNAME: __token__
43-
PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
42+
TWINE_USERNAME: __token__
43+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
4444
run: |
4545
cd selenium
4646
python setup.py sdist bdist_wheel

selenium/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
python_requires='>=3.6',
1919
classifiers=[
20-
"Development Status :: 5 - Production/Stable"
20+
"Development Status :: 5 - Production/Stable",
2121
"Programming Language :: Python :: 3",
2222
"Natural Language :: English",
2323
"License :: OSI Approved :: MIT License",

utils/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
python_requires='>=3.6',
1919
classifiers=[
20-
"Development Status :: 5 - Production/Stable"
20+
"Development Status :: 5 - Production/Stable",
2121
"Programming Language :: Python :: 3",
2222
"Natural Language :: English",
2323
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)