Remove _OciRuntimeBase class and integrate this into OciRuntimeABC #178
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: release to PyPI | |
on: | |
push: | |
jobs: | |
pypi-publish: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: install setuptools | |
run: pip install setuptools | |
- name: Install dependencies & build wheel | |
run: python setup.py sdist bdist_wheel | |
- name: Check the wheel | |
run: | | |
pipx install twine | |
twine check dist/pytest_container-*whl | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
if: startsWith(github.ref, 'refs/tags') |