aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevan Carpenter <git@dvn.me>2021-01-08 18:14:13 +0100
committerDevan Carpenter <git@dvn.me>2021-01-08 18:14:13 +0100
commit230385fc7b05c7c09ef20d8bbe4e417e336480e9 (patch)
treea3580fc8eae3b6d52e568df44d7efbf09db6073d
parentec476e9fbdca2805e0680a72b63a07ae6958d77b (diff)
downloaddream.public.cat-230385fc7b05c7c09ef20d8bbe4e417e336480e9.tar.gz
CI: fix syntax in .gitlab-ci.yml
The syntax for the "before_script" template was missing an important key.
-rw-r--r--.gitlab-ci.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f171d6d..36b2420 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,9 @@
image:
name: alpine@sha256:3c7497bf0c7af93428242d6176e8f7905f2201d8fc5861f45be7a346b5f23436
-.setup: &setup
- - apk -U add curl
+.setup:
+ before_script:
+ - apk -U add curl
staging:
extends: .setup