From 0206dfe702352267fe10321a5785259a7ec8687e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Sat, 23 Nov 2024 20:01:45 +0100 Subject: [PATCH] [Message] Fix workflow branch trigger Corrected the branch triggers from 'ci-cd' to 'master'. This ensures the workflow runs on the correct branch for pushes and pull requests. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c0465b..d722588 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,9 +1,9 @@ -name: BuildApp +name: BuilApp on: push: - branches: [ ci-cd ] + branches: [ master ] pull_request: - branches: [ ci-cd ] + branches: [ master ] workflow_dispatch: jobs: build-frontend: