From d30028c57d4484d6cef1bb24e38f06d91267d60e Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby <pierre-antoine.rouby@inrae.fr> Date: Wed, 20 Sep 2023 09:34:12 +0200 Subject: [PATCH] ci: Disable package building at master branch. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b9c74991..63b5c7ad 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -248,7 +248,7 @@ linux-package-tar: - job: build-linux artifacts: true rules: - - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG + - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_TAG artifacts: paths: - linux/pamhyr-gnulinux.tar.xz @@ -266,7 +266,7 @@ windows-package-zip: - job: build-windows artifacts: true rules: - - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG + - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_TAG artifacts: paths: - windows/pamhyr-windows.zip @@ -284,7 +284,7 @@ windows-package-exe: - job: build-windows artifacts: true rules: - - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_BRANCH == 'master' || $CI_COMMIT_TAG + - if: $CI_COMMIT_BRANCH == 'ci-test' || $CI_COMMIT_TAG artifacts: paths: - windows/pamhyr-windows.exe -- GitLab