aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: f171d6d36dfdacebebeec498272436c6f22a35be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image:
  name: alpine@sha256:3c7497bf0c7af93428242d6176e8f7905f2201d8fc5861f45be7a346b5f23436 

.setup: &setup
  - apk -U add curl

staging:
  extends: .setup
  script:
    - curl "https://$authuser:$authpass@dream.public.cat/api/deploy/stage"

production:
  extends: .setup
  script:
    - curl "https://$authuser:$authpass@dream.public.cat/api/deploy/production/$CI_COMMIT_REF_NAME"
  only:
    - tags
  except:
    - branches