Skip to content

Test release pipeline builds #32

Test release pipeline builds

Test release pipeline builds #32

Workflow file for this run

name: PyPI release
on:
push:
branches:
- automate-versioning
jobs:
build-and-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Export version from git tag
run: |
echo "VERSION=$(git describe --tags --abbrev=0)" >> "$GITHUB_ENV"
- name: Build
run: python -m build