Skip to content

Instantly share code, notes, and snippets.

@kasvith
Created July 16, 2018 15:13
Show Gist options
  • Save kasvith/ffcedaf2b94e7bd2c825844da7b4d012 to your computer and use it in GitHub Desktop.
Save kasvith/ffcedaf2b94e7bd2c825844da7b4d012 to your computer and use it in GitHub Desktop.
GitLab CI final
stages:
- test
- production
test:
stage: test
image: python:3.7
script:
- python -m unittest
production:
stage: production
script:
- tar -czvf release.tar.gz *.py
artifacts:
paths:
- release.tar.gz
only:
- master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment