Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ThemeKit.gitlab-ci.yml « templates « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47329a602b1d29c4b60bba68c70c99a578e0494d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Shopify Theme Kit is a CLI tool for Shopify Themes: https://shopify.github.io/themekit/
# See the full usage of this template described in: https://medium.com/@gogl.alex/how-to-deploy-shopify-themes-automatically-1ac17ee1229c

image: python:2

stages:
  - deploy:staging
  - deploy:production

staging:
  environment: staging
  image: python:2
  stage: deploy:staging
  script:
    - curl -s https://shopify.github.io/themekit/scripts/install.py | python
    - theme deploy --env=staging
  only:
    variables:
      - $CI_DEFAULT_BRANCH == $CI_COMMIT_BRANCH

production:
  environment: production
  image: python:2
  stage: deploy:production
  script:
    - curl -s https://shopify.github.io/themekit/scripts/install.py | python
    - theme deploy --env=production --allow-live
  only:
    - tags