Skip to content

Merge branch 'master' of github.com:MLAB-project/PyFT260 #6

Merge branch 'master' of github.com:MLAB-project/PyFT260

Merge branch 'master' of github.com:MLAB-project/PyFT260 #6

name: Upload Python Package
on:
push:
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}