mirror of
https://github.com/Paillat-dev/discord-progress-bar.git
synced 2026-01-02 01:06:18 +00:00
Replaced branch references from 'main' to 'master' in the CI configuration. This ensures consistency across workflows and aligns with branch naming conventions.
25 lines
469 B
YAML
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 |