From e165801d7666d5fc94c9a9feb1e4f22b592c1fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Dav=C3=B3?= Date: Tue, 4 Jun 2024 12:41:03 +0200 Subject: [PATCH] Run actions on tag --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51de23d..2b5076e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: dao_analyzer_components_publish: runs-on: ubuntu-latest needs: [dao_analyzer_components] - if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' + if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/' ) defaults: run: working-directory: dao_analyzer_components @@ -105,7 +105,7 @@ jobs: pypi: runs-on: ubuntu-latest needs: [package,dao_analyzer_components_publish] - if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' + if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/' ) steps: - name: Download built package uses: actions/download-artifact@v4