From 2101508e0cd5b31b810fb29c5e2e6ca241e066c9 Mon Sep 17 00:00:00 2001 From: Soroosh Mani <77082694+SorooshMani-NOAA@users.noreply.github.com> Date: Thu, 1 Dec 2022 15:21:11 -0500 Subject: [PATCH] Add missing package for publishing After separating build and publish step, the publish job didn't have `poetry` installed. --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 202791ce..25808849 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,5 +41,7 @@ jobs: with: name: build path: dist + - name: install Poetry + uses: abatilo/actions-poetry@v2.2.0 - name: upload wheel and source run: poetry publish --username __token__ --password ${{ secrets.PYPI_TOKEN }}