Skip to content

Commit

Permalink
Better asset ids
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Sep 7, 2024
1 parent 2b8bae1 commit 9ab1c3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion src/gdbdbg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2024 VMware, Inc.
# SPDX-License-Identifier: Apache-2.0

__version__ = "0.2.2"
__version__ = "0.2.3"

0 comments on commit 9ab1c3c

Please sign in to comment.