- Add workflow_dispatch to ci-main.yml for manual full pipeline runs - Add workflow_dispatch to cd-deploy.yml with component selection - Update documentation with UI deployment instructions - Allow backend and web deployment via Forgejo UI Actions tab
29 lines
532 B
YAML
29 lines
532 B
YAML
name: Main CI Pipeline
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, master ]
|
|
pull_request:
|
|
branches: [ main, master ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
code-quality:
|
|
uses: ./code-quality.yml
|
|
|
|
backend-ci:
|
|
needs: code-quality
|
|
uses: ./ci-backend.yml
|
|
|
|
web-ci:
|
|
needs: code-quality
|
|
uses: ./ci-web.yml
|
|
|
|
mobile-ci:
|
|
needs: code-quality
|
|
uses: ./ci-mobile.yml
|
|
|
|
deploy:
|
|
needs: [backend-ci, web-ci, mobile-ci]
|
|
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
|
|
uses: ./cd-deploy.yml
|