From bfa41c866200952227499311c4641fd4c0b2d9e5 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Mon, 28 Oct 2024 01:12:59 -0700 Subject: [PATCH] Fix asset download/upload --- .github/workflows/github-release.yml | 2 ++ relenv/common.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 027ac09..4c25b4f 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -152,10 +152,12 @@ jobs: uses: actions/download-artifact@v4 with: name: ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz + path: ./ - name: Upload ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz id: upload-python-build-assets uses: actions/upload-release-asset@v1 with: upload_url: ${{ needs.release.outputs.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_name: ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz + asset_path: ./${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz asset_content_type: application/tar+xz diff --git a/relenv/common.py b/relenv/common.py index eb5221e..aeef897 100644 --- a/relenv/common.py +++ b/relenv/common.py @@ -18,7 +18,7 @@ import time # relenv package version -__version__ = "0.17.400004" +__version__ = "0.17.400005" MODULE_DIR = pathlib.Path(__file__).resolve().parent