Skip to content

GH-771: Release version 8.3.0 (#830) #252

GH-771: Release version 8.3.0 (#830)

GH-771: Release version 8.3.0 (#830) #252

Workflow file for this run

on:
push:
branches: [ main ]
jobs:
build_and_package_pypi:
if: contains(github.event.head_commit.message, 'Release')
name: Build and package Pypi
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1