From b2bf32a657be1114b173ad28d2d65463ca4c466f Mon Sep 17 00:00:00 2001 From: Filip Wedzicha Date: Wed, 9 Oct 2024 18:19:47 -0400 Subject: [PATCH] Fix: CI-Build not working due to wrong branch in config (#310) --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 44e7bbd8..f4bdf3ee 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,12 +7,12 @@ env: # Compile in parallel where possible. CL: /MP -# Triggers the workflow on push or pull request events for the master branch. +# Triggers the workflow on push or pull request events for the main branch. on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: build: