From e545b2357f665081769e8d6a9646090b0b5e4f5b Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Fri, 24 Jan 2025 16:34:28 +0400 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30d2161a..b49b836a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,4 +26,14 @@ jobs: - name: Checkout [${{ github.repository }}] uses: actions/checkout@v4 - - uses: cvxgrp/.github/actions/publish@v2.0.6 + # download dist from build + - uses: actions/download-artifact@v4 + with: + name: dist + path: dist + + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://upload.pypi.org/legacy/ +