From 8978a6ca8e95cefdc8710ea772f125c36a8cf950 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Fri, 6 Sep 2024 18:52:01 -0700 Subject: [PATCH] Fix tag and release name --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a107000..b8346e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,8 +114,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} + tag_tag: "v${{ needs.build-python-package.outputs.version }}" + release_name: "Release v${{ needs.build-python-package.outputs.version }}" body: | Release ${{ needs.build-python-package.outputs.version }} draft: false