From 6009a1e8b9e3d731b3da2cee6ddd6a67e262930d Mon Sep 17 00:00:00 2001 From: bacon Date: Mon, 28 Aug 2023 20:02:44 +0300 Subject: [PATCH] added yml stage --- test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test.yml diff --git a/test.yml b/test.yml new file mode 100644 index 0000000..61c0979 --- /dev/null +++ b/test.yml @@ -0,0 +1,13 @@ +image: python:3.10 + +predeploy: + stage: deploy + script: + - 'pip3 install requests' + +deploy: + stage: deploy + needs: + - predeploy + script: + - 'python3 main.py'