Skip to content

Release 0.12.0

Release 0.12.0 #5

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"

Check failure on line 12 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 12, Col: 9): Unexpected symbol: '"theforeman"'. Located at position 28 within expression: 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 }}