From 702026e124a372ecb1fcf3b54d1300ab4140f062 Mon Sep 17 00:00:00 2001 From: nl6720 Date: Sun, 14 Mar 2021 12:27:30 +0200 Subject: .gitlab-ci.yml: do not use build:secure on forks Forks may not have access to secure runners. Restrict build:secure to https://gitlab.archlinux.org/archlinux/archiso/ only. Fixes https://gitlab.archlinux.org/archlinux/archiso/-/issues/106 . --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4373f41..95d688e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,15 +40,15 @@ build: tags: - fast-single-thread except: - - master - - schedules - - tags + - master@archlinux/archiso + - schedules@archlinux/archiso + - tags@archlinux/archiso build:secure: extends: .build tags: - secure only: - - master - - schedules - - tags + - master@archlinux/archiso + - schedules@archlinux/archiso + - tags@archlinux/archiso -- cgit v1.2.3-54-g00ecf