Skip to content

Merge pull request #62 from cpederkoff/voxel-location #76

Merge pull request #62 from cpederkoff/voxel-location

Merge pull request #62 from cpederkoff/voxel-location #76

Workflow file for this run

name: Build pypi package
on:
push:
tags: # on tags with versions
- "v*.*.*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build and publish
run: |
poetry version $(git describe --tags --abbrev=0)
poetry build
poetry publish --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}