From 31669a96039e9dd0028024bec8d2995ce783316c Mon Sep 17 00:00:00 2001 From: benedettoleto Date: Sat, 11 May 2024 12:21:19 +0200 Subject: [PATCH] fix workflow execution --- .github/workflows/publish-final-dist.yaml | 4 +--- .github/workflows/publish-test-dist.yaml | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-final-dist.yaml b/.github/workflows/publish-final-dist.yaml index 2884801f..75af550c 100644 --- a/.github/workflows/publish-final-dist.yaml +++ b/.github/workflows/publish-final-dist.yaml @@ -2,8 +2,6 @@ name: Publish Distribution to PyPI on: push: - branches: - - master tags: - '[0-9]+.[0-9]+.[0-9]' @@ -25,7 +23,7 @@ jobs: - name: Install dependencies run: | - poetry install --without docs tests + poetry install --without docs,tests - name: Build the package run: | diff --git a/.github/workflows/publish-test-dist.yaml b/.github/workflows/publish-test-dist.yaml index 3ee4ee76..50172a74 100644 --- a/.github/workflows/publish-test-dist.yaml +++ b/.github/workflows/publish-test-dist.yaml @@ -2,8 +2,6 @@ name: Publish Distribution to TestPyPI on: push: - branches: - - develop tags: - '[0-9]+.[0-9]+.[0-9]+-dev' @@ -25,7 +23,7 @@ jobs: - name: Install dependencies run: | - poetry install --without docs tests + poetry install --without docs,tests - name: Build the package run: |