Skip to content

Commit

Permalink
Upload distribution to PyPI (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
eleftherioszisis authored Jun 11, 2024
1 parent 85871f5 commit 2eb6553
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/sdist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: sdist

on:
workflow_dispatch:
pull_request:
push:
branches:
- main
release:
types:
- published

jobs:

build_sdist:
name: Build sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Build SDist
run: pipx run build --sdist

- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v4
with:
name: build
path: dist

upload_sdist:
name: Upload sdist
needs: [build_sdist]
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
if: github.event_name == 'release' && github.event.action == 'published'

steps:
- uses: actions/download-artifact@v4
with:
name: build
path: dist

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 2eb6553

Please sign in to comment.