From 96d6e3927d65a3bd53315db9b60b62fe44d4d308 Mon Sep 17 00:00:00 2001 From: Zane Selvans Date: Fri, 15 Sep 2023 23:25:37 -0600 Subject: [PATCH] Use gh release instead of gh upload --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ccd7c88..7a30854d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -74,4 +74,4 @@ jobs: env: GITHUB_TOKEN: ${{ github.token }} run: | - gh release upload '${{ github.ref_name }}' dist/** --repo '${{ github.repository }}' + gh release create '${{ github.ref_name }}' ./dist/*.tar.gz ./dist/*.whl --repo '${{ github.repository }}'