diff options
author | Aki <please@ignore.pl> | 2023-03-11 20:12:43 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-04-05 19:40:50 +0200 |
commit | 91f11e032eff6b2aec7b347000820f2f6e6e008a (patch) | |
tree | 645117a5e3b9857539990796a49bb6da2a5ce686 | |
parent | 2ed47b042550dc607e0a4e8afdd30752c1cf6ed4 (diff) | |
download | kurator-91f11e032eff6b2aec7b347000820f2f6e6e008a.zip kurator-91f11e032eff6b2aec7b347000820f2f6e6e008a.tar.gz kurator-91f11e032eff6b2aec7b347000820f2f6e6e008a.tar.bz2 |
Add steam deployment only if protected branch is built
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6bc8f59..53fc7bd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -77,4 +77,6 @@ steam: artifacts: paths: - .steam_cache/ - when: manual + rules: + - if: $CI_COMMIT_REF_PROTECTED == "true" + when: manual |