Files
learning-platform/.github/workflows/on-pull-request-to-main.yml
RaymondVerhoef e783c5f1e7
Some checks failed
On Push to Main / test (push) Has been cancelled
On Push to Main / publish (push) Has been cancelled
On Push to Main / deploy-dev (push) Has been cancelled
feat: implement Docker-based production deployment pipeline with automated Ansible provisioning, CI/CD workflows, and Caddy server configuration.
2026-05-14 10:21:42 +02:00

21 lines
340 B
YAML

name: On Pull Request to Main
on:
pull_request:
branches: [main]
workflow_call:
jobs:
test:
uses: ./.github/workflows/test.yml
publish:
needs: test
uses: ./.github/workflows/publish-image.yml
secrets: inherit
deploy-dev:
needs: publish
uses: ./.github/workflows/deploy-dev.yml
secrets: inherit