feat: implement Docker-based production deployment pipeline with automated Ansible provisioning, CI/CD workflows, and Caddy server configuration.
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

This commit is contained in:
RaymondVerhoef
2026-05-14 10:21:42 +02:00
parent 3a4f6d7c22
commit e783c5f1e7
16 changed files with 453 additions and 18 deletions

21
.github/workflows/on-push-main.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: On Push to Main
on:
push:
branches: [main]
jobs:
test:
uses: ./.github/workflows/test.yml
publish:
needs: test
uses: ./.github/workflows/publish-image.yml
with:
build_mode: development
secrets: inherit
deploy-dev:
needs: publish
uses: ./.github/workflows/deploy-dev.yml
secrets: inherit