diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..b2ef2f2008b053427289934226ee823c1aae6292 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +stages: + - deploy + +deploy-railway: + stage: deploy + image: ubuntu + only: + - pushes + - main + script: + - apt-get update && apt-get install -y curl + - curl -fsSL https://railway.app/install.sh | sh + - railway up --service=$RAILWAY_SERVICE_NAME -d \ No newline at end of file