diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..a828f21 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,17 @@ +name: Deploy with Docker Compose + +on: + push: + branches: + - main # adapte la branche que tu veux déployer + +jobs: + deploy: + runs-on: mac-orbstack-runner # le nom que tu as donné au runner + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Deploy stack + run: | + docker compose up -d --build