From d2f1333c09f8f2e8cf2ccd0f9613fcf71c86e88a Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sun, 7 Jun 2026 00:55:02 -0500 Subject: [PATCH] fix: use public Gitea URL in test workflow - Replace internal 172.0.0.29:3000 URL with public gogs.tftsr.com URL - This allows CI runners to access the repository --- .gitea/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index d7309681..7efe54c1 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -16,7 +16,7 @@ jobs: run: | set -eux git init - git remote add origin http://172.0.0.29:3000/sarman/tftsr-devops_investigation.git + git remote add origin https://gogs.tftsr.com/sarman/tftsr-devops_investigation.git if [ -n "${GITHUB_SHA:-}" ] && git fetch --depth=1 origin "$GITHUB_SHA"; then echo "Fetched commit SHA: $GITHUB_SHA" elif [ -n "${GITHUB_REF_NAME:-}" ] && git fetch --depth=1 origin "$GITHUB_REF_NAME"; then @@ -63,7 +63,7 @@ jobs: run: | set -eux git init - git remote add origin http://172.0.0.29:3000/sarman/tftsr-devops_investigation.git + git remote add origin https://gogs.tftsr.com/sarman/tftsr-devops_investigation.git if [ -n "${GITHUB_SHA:-}" ] && git fetch --depth=1 origin "$GITHUB_SHA"; then echo "Fetched commit SHA: $GITHUB_SHA" elif [ -n "${GITHUB_REF_NAME:-}" ] && git fetch --depth=1 origin "$GITHUB_REF_NAME"; then @@ -100,7 +100,7 @@ jobs: run: | set -eux git init - git remote add origin http://172.0.0.29:3000/sarman/tftsr-devops_investigation.git + git remote add origin https://gogs.tftsr.com/sarman/tftsr-devops_investigation.git if [ -n "${GITHUB_SHA:-}" ] && git fetch --depth=1 origin "$GITHUB_SHA"; then echo "Fetched commit SHA: $GITHUB_SHA" elif [ -n "${GITHUB_REF_NAME:-}" ] && git fetch --depth=1 origin "$GITHUB_REF_NAME"; then @@ -139,7 +139,7 @@ jobs: set -eux apk add --no-cache git git init - git remote add origin http://172.0.0.29:3000/sarman/tftsr-devops_investigation.git + git remote add origin https://gogs.tftsr.com/sarman/tftsr-devops_investigation.git if [ -n "${GITHUB_SHA:-}" ] && git fetch --depth=1 origin "$GITHUB_SHA"; then echo "Fetched commit SHA: $GITHUB_SHA" elif [ -n "${GITHUB_REF_NAME:-}" ] && git fetch --depth=1 origin "$GITHUB_REF_NAME"; then @@ -173,7 +173,7 @@ jobs: set -eux apk add --no-cache git git init - git remote add origin http://172.0.0.29:3000/sarman/tftsr-devops_investigation.git + git remote add origin https://gogs.tftsr.com/sarman/tftsr-devops_investigation.git if [ -n "${GITHUB_SHA:-}" ] && git fetch --depth=1 origin "$GITHUB_SHA"; then echo "Fetched commit SHA: $GITHUB_SHA" elif [ -n "${GITHUB_REF_NAME:-}" ] && git fetch --depth=1 origin "$GITHUB_REF_NAME"; then