From 2f79b77e432df24e24c4a7cc74994f0fa8bf8790 Mon Sep 17 00:00:00 2001 From: William Ronchetti Date: Wed, 6 Jan 2021 09:26:57 -0500 Subject: [PATCH] do not call publish script as it is interactive --- .github/workflows/main-publish.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main-publish.yml b/.github/workflows/main-publish.yml index 9b2e0ea45..fa67c8973 100644 --- a/.github/workflows/main-publish.yml +++ b/.github/workflows/main-publish.yml @@ -33,4 +33,4 @@ jobs: PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | pip install poetry - make publish + poetry publish --no-interaction --build --username=$PYPI_USER --password=$PYPI_PASSWORD diff --git a/pyproject.toml b/pyproject.toml index eefd3ff44..4349dba5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dcicutils" -version = "1.8.2" +version = "1.8.3" description = "Utility package for interacting with the 4DN Data Portal and other 4DN resources" authors = ["4DN-DCIC Team "] license = "MIT"