Skip to content

Install github action for publishing #2

Install github action for publishing

Install github action for publishing #2

Workflow file for this run

name: Publish Python module to PyPi
on:
# push:
# branches:
# - main
# - feature/pypi-publish # For testing
workflow_run:
workflows: ["Execute Unit Tests"]
types:
- completed
jobs:
publish:
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m pip install build --user
- name: Build a binary wheel and a source tarball
run: python3 -m build
# - name: Store the distribution packages
# uses: actions/upload-artifact@v4
# with:
# name: python-package-distributions
# path: dist/
- name: >-
Publish Python 🐍 distribution 📦 to PyPI
environment:
name: live
url: https://pypi.org/p/BetterOdooApiWrapper
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
# - name: Download all the dists
# uses: actions/download-artifact@v4
# with:
# name: python-package-distributions
# path: dist/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1