Skip to content

Commit

Permalink
add pypi main workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Feb 23, 2024
1 parent 817b14d commit ffb2796
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pypi_main.yml
Original file line number Diff line number Diff line change
@@ -0,0 1,25 @@
name: PyPi distribute main release
on: [release]

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
permissions:
id-token: write

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Hatch
run: pip install hatch
- name: Build
run: hatch build
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit ffb2796

Please sign in to comment.