Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Setup GitHub actions (#1) #1

Setup GitHub actions (#1)

Setup GitHub actions (#1) #1

Workflow file for this run

name: PyPI
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build-n-publish:
name: Build and publish on PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/obp-accounting-sdk
permissions:
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install build
- name: Build distribution packages
run: |
python -m build
- name: Publish distribution packages to PyPI
uses: pypa/gh-action-pypi-publish@release/v1