Skip to content

Commit

Permalink
Rename and update publishing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
catanzaromj committed Mar 12, 2024
1 parent fef712b commit 99aba01
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 30 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Build and Upload Python Package

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

jobs:
build_wheel_and_sdist:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Build SDist and wheel
run: pipx run build

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

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

upload_pypi:
name: Upload release to PyPI
needs: [build_wheel_and_sdist]
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/tadasets
permissions:
id-token: write
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v4
with:
name: Packages
path: dist

- uses: pypa/gh-action-pypi-publish@release/v1
30 changes: 0 additions & 30 deletions .github/workflows/python-publish.yml

This file was deleted.

0 comments on commit 99aba01

Please sign in to comment.