From 234e89141845bc7508d32706a33f62fe9582100c Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Thu, 23 Nov 2023 00:47:19 +0100 Subject: [PATCH] Fix: main is used instead of master, only builds for feature/action Accidentally used main instead of master in the workflow. Also hardcoded feature/action as the only feature branch that triggers a build, instead any feature branch will now trigger a build. --- .gitea/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 7c00e88..7eb2a72 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -3,8 +3,8 @@ name: Build and deploy automation_rs on: push: branches: - - main - - feature/actions + - master + - feature/** jobs: build: