From c0334ce5b3f659d65af023bf17e9109d84616715 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Sat, 14 Feb 2026 06:39:24 -0500 Subject: [PATCH] deploy to ingress via deploy-www.sh on proxy.uncloseai.com runner --- .gitlab-ci.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 395f482..ee642ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ stages: - build - - trigger-deploy + - deploy build: stage: build @@ -26,10 +26,12 @@ build: - commit-hash.txt expire_in: 1 month -trigger_deploy: - stage: trigger-deploy - trigger: - include: - - local: .gitlab-ci-deploy.yml +deploy_to_ingress: + stage: deploy + tags: ["proxy.uncloseai.com"] + needs: [build] + script: + - tar -xzf russell.ballestrini.net.tar.gz + - sudo /usr/local/bin/deploy-www.sh russell-ballestrini russell.ballestrini.net rules: - if: '$CI_COMMIT_BRANCH == "master"'