Skip to content

chore: change way how version is set from build #108

chore: change way how version is set from build

chore: change way how version is set from build #108

Workflow file for this run

---
name: Build and Publish Release via PyPi
on: push
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Update version file ⬆️
uses: brettdorrans/[email protected]
with:
filename: 'setup.py'
placeholder: '1.0.0.dev1'
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a source tarball
run: >-
python -m
build
--sdist
--outdir dist/ .
- name: Ensure .VERSION file is included
run: cp .VERSION dist/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}