Files
Paillat-dev a1ecfdfacd 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.
2025-04-23 18:10:30 +02:00

25 lines
469 B
YAML

name: CI
on:
push:
branches: [ "master", "dev" ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
pull_request:
branches: ["master", "dev"]
release:
types: [created]
jobs:
quality:
uses: ./.github/workflows/quality.yaml
permissions:
contents: read
publish:
needs: quality
if: github.event_name == 'release'
uses: ./.github/workflows/publish.yaml
permissions:
id-token: write
contents: read