From d29da1de0e7df805182dc687f88fc60bc0a0ef8c Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Tue, 10 Nov 2020 23:50:43 -0800 Subject: [PATCH] tags must be an array of strings --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9ab38d9740..7c20cd72a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ build-sbbs-linux: - tags: linux + tags: [linux] image: gcc stage: build script: @@ -16,7 +16,7 @@ build-sbbs-linux: - "src/sbbs3/*/*.exe.release/*" build-sexpots-linux: - tags: linux + tags: [linux] image: gcc stage: build script: @@ -28,7 +28,7 @@ build-sexpots-linux: - "src/sexpots/*.exe.release/*" build-syncterm-linux: - tags: linux + tags: [linux] image: gcc stage: build script: @@ -41,7 +41,7 @@ build-syncterm-linux: build-sbbs-windows: - tags: windows + tags: [windows] stage: build script: -- GitLab