added yml stage

This commit is contained in:
bacon
2023-08-28 20:02:44 +03:00
parent 2a063687d5
commit 6009a1e8b9

13
test.yml Normal file
View File

@@ -0,0 +1,13 @@
image: python:3.10
predeploy:
stage: deploy
script:
- 'pip3 install requests'
deploy:
stage: deploy
needs:
- predeploy
script:
- 'python3 main.py'