Skip to content

Merge pull request #126 from precice/micro-manager-v0.5.0 #14

Merge pull request #126 from precice/micro-manager-v0.5.0

Merge pull request #126 from precice/micro-manager-v0.5.0 #14

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- v*
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
uses: BSFishy/pip-action@v1
with:
packages: |
twine
build
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
pyproject-build
twine upload dist/*