Veeder-Root TLS Socket Library v1.2.0 #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
release: | |
types: [published] | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- docs | |
- .github | |
- LICENSE | |
- pyproject.toml | |
- README.md | |
pull_request: | |
branches: | |
- "*" | |
env: | |
TLS_IP: ${{ secrets.TLS_IP }} | |
TLS_PORT: ${{ secrets.TLS_PORT }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: main | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 9 | |
submodules: false | |
- name: Use Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Download dependencies | |
run: | | |
pip install build | |
python -m build | |
pip install dist/*.whl | |
- name: Run tests | |
run: | | |
cd tests | |
python -m unittest | |
cd .. | |
- name: Upload distribution package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
publish: | |
runs-on: ubuntu-latest | |
environment: main | |
needs: build | |
if: github.event_name == 'release' | |
steps: | |
- name: Download a distribution artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Use Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip install twine | |
- name: Publish distribution to PyPI | |
run: | | |
twine upload -r pypi dist/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} |