From 594f35c8a44bdf1ce69ae03817299bc0bb050432 Mon Sep 17 00:00:00 2001
From: Yaroslav Lobankov <y.lobankov@tarantool.org>
Date: Mon, 27 Feb 2023 11:37:22 +0400
Subject: [PATCH] ci: not to push sources on `*-entrypoint` tag

Sources should be pushed to the repo on a release tag only,
an `*-entrypoint` tag is an auxiliary one.

NO_DOC=ci
NO_TEST=ci
NO_CHANGELOG=ci

(cherry picked from commit 45cc4930ffff42b7db63a6ae8f51c78140836a2c)
---
 .github/workflows/source.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/source.yml b/.github/workflows/source.yml
index e4e47b0955..69d66e00f5 100644
--- a/.github/workflows/source.yml
+++ b/.github/workflows/source.yml
@@ -2,8 +2,8 @@ name: source
 
 on:
   push:
-    tags:
-      - '**'
+    tags-ignore:
+      - '**-entrypoint'
   workflow_dispatch:
 
 env:
-- 
GitLab