From ff18a368d5a27f0800244f6661a07ac15c0d672e Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Wed, 28 Jul 2021 10:04:48 +0100 Subject: [PATCH] Update TestPyPI release workflow --- .github/workflows/release.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd23d4827..3076e5a5b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,19 +21,15 @@ jobs: - name: Generate final distribution run: python -m build - - name: Get the release version - id: version - run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/} - # Upload to GitHub Actions artifacts - uses: actions/upload-artifact@v2 with: name: sdist - path: dist/furo-${{ steps.version.outputs.VERSION }}.tar.gz + path: dist/furo-*.tar.gz - uses: actions/upload-artifact@v2 with: name: wheel - path: dist/furo-${{ steps.version.outputs.VERSION }}-py3-none-any.whl + path: dist/furo-*-py3-none-any.whl upload: runs-on: ubuntu-latest