Skip to content

Release 0.12.1

Release 0.12.1 #6

Workflow file for this run

name: release
on:
push:
tags:
- obal-[0-9]+.[0-9]+.[0-9]+
jobs:
release:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'theforeman' }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.7"
- name: Install wheel
run: pip install wheel
- name: Build sdist and wheel
run: python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}