From b6569154a4d591b6a5406f3b40bed3b8b7f915c0 Mon Sep 17 00:00:00 2001 From: SysAdmin Date: Mon, 17 Nov 2025 13:41:27 +0000 Subject: [PATCH] fix: Remove oauth2 prefix for Gitea token authentication (Gitea uses different format than GitHub) --- .gitea/workflows/build-and-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-and-deploy.yml b/.gitea/workflows/build-and-deploy.yml index 0f94cf5..4fe5642 100644 --- a/.gitea/workflows/build-and-deploy.yml +++ b/.gitea/workflows/build-and-deploy.yml @@ -204,7 +204,7 @@ jobs: if [ ! -d .git ]; then echo "Cloning repository with authentication..." rm -rf * # Clean any existing files - git clone https://oauth2:\${GITEA_TOKEN}@git.silverlabs.uk/Jamie/littleshop.git . + git clone https://\${GITEA_TOKEN}@git.silverlabs.uk/Jamie/littleshop.git . else echo "Repository already cloned, pulling latest..." git fetch origin