diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 32a28c95..027ac09d 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -152,12 +152,10 @@ jobs: uses: actions/download-artifact@v4 with: name: ${{ matrix.python }}-${{ matrix.arch }}-${{ matrix.platform }}.tar.xz - path: release-artifacts/ - 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: release-artifacts/ asset_content_type: application/tar+xz diff --git a/relenv/common.py b/relenv/common.py index aa7d111d..eb5221e2 100644 --- a/relenv/common.py +++ b/relenv/common.py @@ -18,7 +18,7 @@ import time # relenv package version -__version__ = "0.17.400003" +__version__ = "0.17.400004" MODULE_DIR = pathlib.Path(__file__).resolve().parent