Skip to content

fix: incorrect pixmap used in CAM workbench. #40 #110

fix: incorrect pixmap used in CAM workbench. #40

fix: incorrect pixmap used in CAM workbench. #40 #110

name: Publish BTL to PyPi
on: push
jobs:
build-and-publish:
name: Build and publish BTL to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install build environment
run: python3 -m pip install build --user
- name: Install requirements
run: pip install --no-cache-dir -r requirements.txt
- name: Build a wheel
run: python3 -m build
- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}