From 8e4aabf96713b8665d5719b1c46b7ea15ee1e39f Mon Sep 17 00:00:00 2001 From: Riley Date: Wed, 18 Feb 2026 17:28:29 +0000 Subject: [PATCH] fix(workflows): changed branch variable capitalisation to match gitea Gitea forces uppercase variable names. Updated the workflow to reflect that --- .gitea/workflows/OnMergeOnPushToLive.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/OnMergeOnPushToLive.yaml b/.gitea/workflows/OnMergeOnPushToLive.yaml index 98ccb0a..7c3668c 100644 --- a/.gitea/workflows/OnMergeOnPushToLive.yaml +++ b/.gitea/workflows/OnMergeOnPushToLive.yaml @@ -5,10 +5,10 @@ on: types: - closed branches: - - ${{ vars.branch }} + - ${{ vars.BRANCH }} push: branches: - - ${{ vars.branch }} + - ${{ vars.BRANCH }} jobs: build-and-deploy: