Update CI workflow to use 'master' instead of 'main'

Replaced branch references from 'main' to 'master' in the CI configuration. This ensures consistency across workflows and aligns with branch naming conventions.
This commit is contained in:
2025-04-23 18:10:30 +02:00
parent 169656023c
commit a1ecfdfacd

View File

@@ -2,11 +2,11 @@ name: CI
on:
push:
branches: [ "main", "dev" ]
branches: [ "master", "dev" ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
pull_request:
branches: ["main", "dev"]
branches: ["master", "dev"]
release:
types: [created]