diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ba51306..0e23166 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -150,6 +150,7 @@ jobs: uses: actions/download-artifact@v4 with: name: python-packages + path: dist - name: Publish to PyPI env: @@ -164,8 +165,7 @@ jobs: - check-version steps: - - if: ${{ env.DOCKER_USERNAME != '' }} - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 diff --git a/Makefile b/Makefile index ce0934f..b83bcfc 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,10 @@ publish-dist: $(VENV_DIR) echo "$(BOLDRED)==> Missing PYPI_TOKEN !!!$(RESET)"; \ exit 1; \ fi - @$(VENV_DIR)/bin/twine upload --username __token__ --password $(PYPI_TOKEN) dist/* + @for package in $$(ls dist); do \ + echo "- $$package"; \ + done + @$(VENV_DIR)/bin/twine upload $(TWINE_UPLOAD_ARGS) --username __token__ --password $(PYPI_TOKEN) dist/* .PHONY: install install-dev: $(VENV_DIR) diff --git a/oncodrivefml/__init__.py b/oncodrivefml/__init__.py index c5090b3..6511cee 100644 --- a/oncodrivefml/__init__.py +++ b/oncodrivefml/__init__.py @@ -1,2 +1,2 @@ __logger_name__ = 'oncodrivefml' -__version__ = "2.5.0" \ No newline at end of file +__version__ = "2.5.0rc1" \ No newline at end of file