Skip to content

Merge pull request #777 from AFM-SPM/ns-rse/776-config-jigging #18

Merge pull request #777 from AFM-SPM/ns-rse/776-config-jigging

Merge pull request #777 from AFM-SPM/ns-rse/776-config-jigging #18

Workflow file for this run

name: Publish package to PyPi
# See https://docs.pypi.org/trusted-publishers/adding-a-publisher/
on:
push:
tags:
- v*
workflow_dispatch: # Uncomment line if you also want to trigger action manually
jobs:
build-release:
runs-on: ubuntu-latest
environment: pypi-publish
name: Publish package to PyPi
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Installing the package
run: |
pip3 install .
pip3 install .[pypi]
- name: Build package
run: |
pip3 install --upgrade setuptools
export DEB_PYTHON_INSTALL_LAYOUT=deb_system
python -m build --no-isolation
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}