Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.6'

- name: Install dependencies
run: |
Expand All @@ -30,17 +30,17 @@ jobs:
- name: Build and publish lambdatest-utils
if: github.event.inputs.package-name == 'lambdatest-utils'
env:
PYPI_USERNAME: __token__
PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
cd utils
python setup.py sdist bdist_wheel
twine upload dist/*
- name: Build and publish lambdatest-selenium-driver
if: github.event.inputs.package-name == 'lambdatest-selenium-driver'
env:
PYPI_USERNAME: __token__
PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
cd selenium
python setup.py sdist bdist_wheel
Expand Down