From a94af6ecbeda654abe0106c13f7ff089a21a324f Mon Sep 17 00:00:00 2001 From: Justin Kromlinger Date: Mon, 2 Nov 2020 00:04:52 +0100 Subject: [PATCH 1/2] Drop PUBLISH_ARCHLINUX_REPOSITORY This provides publish:offical with BUILD_COMMIT and enables a normal daily release to archlinux/archlinux on the weekly schedule run. --- .gitlab-ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0d2fde8..1d570e1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -173,8 +173,6 @@ release: only: refs: - schedules - variables: - - $PUBLISH_ARCHLINUX_REPOSITORY == "TRUE" before_script: - apk update - apk add jq curl httpie From 9ced99a46412558dc1a68cca2e3822e0f949477b Mon Sep 17 00:00:00 2001 From: Justin Kromlinger Date: Mon, 2 Nov 2020 00:14:06 +0100 Subject: [PATCH 2/2] Check for both schedule variables in release in case we add more --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1d570e1..61c48ff 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -173,6 +173,9 @@ release: only: refs: - schedules + variables: + - $PUBLISH_ARCHLINUX_REPOSITORY == "TRUE" + - $PUBLISH_OFFICIAL_LIBRARY == "TRUE" before_script: - apk update - apk add jq curl httpie