From a0d97f64e5a9555ccfc1f2678074c678220729bd Mon Sep 17 00:00:00 2001 From: Craig Gumbley Date: Fri, 2 Dec 2022 13:22:36 +0000 Subject: [PATCH] Fix ci release steps --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a31a726..3fe35c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: - name: "create release" if: startsWith(github.ref, 'refs/tags/v') run: | - gh release create v${{ steps.get_version.outputs.version }} ./pkg/*.gem --title v${{ steps.get_version.outputs.version }} + gh release create v${{ steps.get_version.outputs.version }} ./dist/*.whl --title v${{ steps.get_version.outputs.version }} env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}