Skip to content
Snippets Groups Projects
Commit badb51b4 authored by Alexander V. Tikhonov's avatar Alexander V. Tikhonov Committed by Kirill Yukhin
Browse files

github-ci: fix git refs/heads paths mistakes

Found that in previous commit to debian_11.yml file were made mistakes
in git refs/heads paths:

  e0a33ffe ("github-ci: build packages for debian-bullseye")

This patch fixes it.

Follows up #5638
parent e0a33ffe
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment