Skip to content

Revert "Changes due to changes in RM2.0.0 (#78)" #60

Revert "Changes due to changes in RM2.0.0 (#78)"

Revert "Changes due to changes in RM2.0.0 (#78)" #60

Workflow file for this run

name: PyPi Conductor-workers update
on:
push:
# Publish `master` as Docker `latest` image.
branches:
- master
# Publish `v1.2.3` tags as releases.
tags:
- v*
jobs:
build-n-publish:
name: Build and publish frinx conductor workers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
working-directory: ./frinx_conductor_workers
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
working-directory: ./frinx_conductor_workers
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*