fix(workflows): changed branch variable capitalisation to match gitea

Gitea forces uppercase variable names. Updated the workflow to reflect that
This commit is contained in:
Riley 2026-02-18 17:28:29 +00:00
parent e73a6cab60
commit 8e4aabf967

View file

@ -5,10 +5,10 @@ on:
types:
- closed
branches:
- ${{ vars.branch }}
- ${{ vars.BRANCH }}
push:
branches:
- ${{ vars.branch }}
- ${{ vars.BRANCH }}
jobs:
build-and-deploy: