Skip to content

Docs: Add make build target #2

Docs: Add make build target

Docs: Add make build target #2

Workflow file for this run

name: "kitconcept.core CI"
on:
push:
paths:
- "backend/**"
- "docs/**"
- "frontend/**"
- ".github/workflows/backend.yml"
- ".github/workflows/config.yml"
- ".github/workflows/docs.yml"
- ".github/workflows/frontend.yml"
- ".github/workflows/main.yml"
workflow_dispatch:
jobs:
config:
name: "Config: Compute values used in workflow"
uses: ./.github/workflows/config.yml
backend:
uses: ./.github/workflows/backend.yml
needs:
- config
with:
python-version: ${{ needs.config.outputs.python-version }}
plone-version: ${{ needs.config.outputs.plone-version }}
kc-version: ${{ needs.config.outputs.kc-version }}
base-tag: ${{ needs.config.outputs.base-tag }}
image-name-prefix: ${{ needs.config.outputs.image-name-prefix }}
if: ${{ needs.config.outputs.backend == 'true' }}
permissions:
contents: read
packages: write
docs:
uses: ./.github/workflows/docs.yml
needs:
- config
with:
python-version: ${{ needs.config.outputs.python-version }}
if: ${{ needs.config.outputs.docs == 'true' }}
permissions:
contents: read
packages: write
frontend:
uses: ./.github/workflows/frontend.yml
needs:
- config
with:
node-version: ${{ needs.config.outputs.node-version }}
volto-version: ${{ needs.config.outputs.volto-version }}
if: ${{ needs.config.outputs.frontend == 'true' }}
permissions:
contents: read
packages: write