From 0ef0eff22248dd4fa60d9af769c9097c4e8de4b9 Mon Sep 17 00:00:00 2001 From: William Barnhart Date: Wed, 26 Apr 2023 13:36:13 -0400 Subject: [PATCH] Pass name: ${{ env.sdist-artifact }} while uploading to PyPi I forgot to make this change while re-configuring the pipelines. Sorry! --- .github/workflows/ci-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 294872b..ebbb113 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -113,7 +113,7 @@ jobs: - name: Download the sdist artifact uses: actions/download-artifact@v3 with: - name: artifact + name: ${{ env.sdist-artifact }} path: dist - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@release/v1