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