From ad91504148d0be92a1a59bbadc311584c0c30fa9 Mon Sep 17 00:00:00 2001 From: "J. Caleb Wherry" <337871+calebwherry@users.noreply.github.com> Date: Wed, 20 Sep 2023 16:46:15 -0400 Subject: [PATCH] Remove exts from artifact upload --- .github/workflows/build-test-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test-package.yml b/.github/workflows/build-test-package.yml index b927358..c9b5afb 100644 --- a/.github/workflows/build-test-package.yml +++ b/.github/workflows/build-test-package.yml @@ -139,14 +139,14 @@ jobs: if: matrix.plat == 'any' uses: actions/upload-artifact@v3 with: - name: amalgam-lang-${{ needs.pepify.outputs.pepified-version }}.tar.gz + name: amalgam-lang-${{ needs.pepify.outputs.pepified-version }} path: dist/amalgam-lang-*.tar.gz if-no-files-found: error - name: Upload Wheel Artifact uses: actions/upload-artifact@v3 with: - name: amalgam_lang-${{ needs.pepify.outputs.pepified-version }}-py3-none-${{ matrix.plat }}.whl + name: amalgam_lang-${{ needs.pepify.outputs.pepified-version }}-py3-none-${{ matrix.plat }} path: dist/amalgam_lang-*.whl if-no-files-found: error