From ead3a2ea4450b4434e45ac9a0f5398eb4c297862 Mon Sep 17 00:00:00 2001 From: Nils Homer Date: Thu, 16 Jan 2025 16:08:46 -0800 Subject: [PATCH] chore(release): bump to 1.0.3 (#15) --- .github/workflows/publish_pybwa.yml | 15 +++++++++------ pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish_pybwa.yml b/.github/workflows/publish_pybwa.yml index 381432d..e5a9cf3 100644 --- a/.github/workflows/publish_pybwa.yml +++ b/.github/workflows/publish_pybwa.yml @@ -124,13 +124,16 @@ jobs: pull-requests: read needs: make-changelog steps: - - name: Download the sdist - uses: actions/download-artifact@v4 - with: + - name: Download the sdist + uses: actions/download-artifact@v4 + with: name: pybwa-sdist - path: pybwa-sdist.zip - - name: Unzip - run: unzip pybwa-sdist.zip + - name: Display structure of downloaded files + shell: bash + run: ls -R + - name: Move into place + shell: bash + run: mv -v pybwa-sdist pybwa-$(poetry version --short).tar.gz - name: Create Draft Release id: create_release uses: softprops/action-gh-release@v2 diff --git a/pyproject.toml b/pyproject.toml index 217eb36..35741b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pybwa" -version = "1.0.2" +version = "1.0.3" description = "Python bindings for BWA" authors = ["Nils Homer"] license = "MIT"