26 lines
633 B
YAML
26 lines
633 B
YAML
# .gitea/workflows/ci.yml — Kirjaston oma CI (eat your own dogfood)
|
|
#
|
|
# Tämä workflow on kirjaston ENSIMMÄINEN kuluttaja.
|
|
# Jokainen push ajaa kirjaston omat reusable workflowt.
|
|
#
|
|
# POC: testataan ci-engine-test.yml — nähdään miten Gitea
|
|
# raportoi reusable workflow'n sisäiset jobit.
|
|
|
|
name: CI — gitea-ci-library
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
feature:
|
|
if: github.ref != 'refs/heads/master'
|
|
uses: ./.gitea/workflows/ci-engine-test.yml
|
|
secrets: inherit
|
|
|
|
master:
|
|
if: github.ref == 'refs/heads/master'
|
|
uses: ./.gitea/workflows/ci-engine-test.yml
|
|
secrets: inherit
|