mirror of
https://github.com/t2linux/fedora.git
synced 2026-08-16 05:18:11 -07:00
20 lines
383 B
YAML
20 lines
383 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
checks:
|
|
uses: ./.github/workflows/checks.yml
|
|
build:
|
|
uses: ./.github/workflows/build.yml
|
|
secrets: inherit
|
|
deploy:
|
|
needs: ["build"]
|
|
uses: ./.github/workflows/deploy.yml
|
|
secrets: inherit
|
|
release:
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
needs: ["build"]
|
|
uses: ./.github/workflows/release.yml
|
|
secrets: inherit
|