From 0d6f62dd70000e0e1119fb3d64f8e5e8c5fa070e Mon Sep 17 00:00:00 2001 From: Flaminel Date: Wed, 13 Nov 2024 22:43:10 +0200 Subject: [PATCH] disabled main branch pipeline; enabled pipeline on tag --- .github/workflows/pipeline.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 172a38b..640e938 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -1,8 +1,10 @@ on: push: - paths: - - 'code/**' - branches: [ main ] + tags: + - "v*.*.*" + # paths: + # - 'code/**' + # branches: [ main ] pull_request: paths: - 'code/**'