From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp36.i.mail.ru (smtp36.i.mail.ru [94.100.177.96]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 89DF34765E0 for ; Mon, 28 Dec 2020 17:00:40 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Mon, 28 Dec 2020 17:00:37 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v1] github-ci: fix git refs/heads paths mistakes List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin Cc: tarantool-patches@dev.tarantool.org Cc: tarantool-patches@dev.tarantool.org Found that in previous commit to debian_11.yml file were made mistakes in git refs/heads paths: e0a33ffed4a8934ed2cb44343ea5ce9d6958b780 ("github-ci: build packages for debian-bullseye") This patch fixes it. Follows up #5638 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/debian-11 Issue: https://github.com/tarantool/tarantool/issues/5638 .github/workflows/debian_11.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/debian_11.yml b/.github/workflows/debian_11.yml index 3261c9b4a..06008c231 100644 --- a/.github/workflows/debian_11.yml +++ b/.github/workflows/debian_11.yml @@ -33,9 +33,9 @@ jobs: GPG_SIGN_KEY: ${{ secrets.GPG_SIGN_KEY }} run: | if ${{ github.event_name == 'push' && - ( github.ref == 'ref/head/master' || - github.ref == 'ref/head/1.10' || - startsWith(github.ref, 'refs/head/2.') || + ( github.ref == 'refs/heads/master' || + github.ref == 'refs/heads/1.10' || + startsWith(github.ref, 'refs/heads/2.') || startsWith(github.ref, 'refs/tags') ) }} ; then sudo apt-get -y update sudo apt-get install -y procmail createrepo awscli reprepro -- 2.25.1