Skip to content

support for pod tolerations #5

support for pod tolerations

support for pod tolerations #5

Workflow file for this run

name: Upload Python Package
on:
release:
types: [created]
jobs:
build:
name: Build ${{ matrix.os }}, ${{ matrix.platform }} ${{matrix.python-version}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.7]
platform: [x64]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist
twine upload dist/*