diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 1c06aba..8268e0c 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -50,7 +50,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 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/*.tar.gz + asset_path: dist/gdbdbg-${{ inputs.version }}.tar.gz asset_name: Source Tarball asset_content_type: application/tar+gzip @@ -61,8 +61,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 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/*x86_64.whl - asset_name: x86_64 Wheel + asset_path: dist/gdbdbg-${{ inputs.version }}-py3-none-manylinux_2_17_x86_64.whl + asset_name: gdbdbg-${{ inputs.version }}-py3-none-manylinux_2_17_x86_64.whl asset_content_type: application/zip - name: Upload arm64 Wheel @@ -72,6 +72,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 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/*aarch64.whl - asset_name: aarch64 Wheel + asset_path: dist/gdbdbg-${{ inputs.version }}-py3-none-manylinux_2_17_aarch64.whl + asset_name: gdbdbg-${{ inputs.version }}-py3-none-manylinux_2_17_aarch64.whl asset_content_type: application/zip diff --git a/src/gdbdbg/__init__.py b/src/gdbdbg/__init__.py index 6d460f9..ef4b199 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.2" +__version__ = "0.2.3"