From 33cc0c3138f84e5a9d5a09096bc0e4ef27634c3d Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Sat, 7 Sep 2024 16:28:27 -0700 Subject: [PATCH] Fix source tarball asset name --- .github/workflows/github-release.yml | 2 +- src/gdbdbg/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index cb6d6e0..f041d84 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -51,7 +51,7 @@ jobs: with: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps asset_path: dist/gdbdbg-${{ inputs.version }}.tar.gz - asset_name: Source Tarball + asset_name: gdbdbg-${{ inputs.version }}.tar.gz asset_content_type: application/tar+gzip - name: Upload x86-64 Wheel diff --git a/src/gdbdbg/__init__.py b/src/gdbdbg/__init__.py index 5f6bc00..04ba1cd 100644 --- a/src/gdbdbg/__init__.py +++ b/src/gdbdbg/__init__.py @@ -1,4 +1,4 @@ # Copyright 2024 VMware, Inc. # SPDX-License-Identifier: Apache-2.0 -__version__ = "0.2.4" +__version__ = "0.2.5"