blob: 0616392b86075d4996f12a9e0833ba71a87d7ed9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
image: 'python:3'
stages:
- deploy
deploy-job:
stage: deploy
script:
- echo "Deploying application..."
- echo "Application successfully deployed."
- git clone --depth 1 https://gitlab.com/kdam0/vps.git
- cd vps
- ls -al
|