Skip to content

Instantly share code, notes, and snippets.

@agcty
Created June 9, 2020 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agcty/2cb081e75d76c934a1099f6d9fb43146 to your computer and use it in GitHub Desktop.
Save agcty/2cb081e75d76c934a1099f6d9fb43146 to your computer and use it in GitHub Desktop.
GitLab CI file for debut upgrade
image: python:2
stages:
- staging
- production
staging:
image: python:2
stage: staging
script:
- curl -s https://shopify.github.io/themekit/scripts/install.py | python
- theme deploy -e=staging
only:
- master
production:
image: python:2
stage: production
script:
- curl -s https://shopify.github.io/themekit/scripts/install.py | python
- theme deploy -e=production
only:
- tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment