add autodeploy workflow action

This commit is contained in:
Julien Aldon
2026-01-19 14:44:00 +01:00
parent 68b7405c52
commit 23cf55eb61
3 changed files with 93 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
name: Deploy Fefan
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build & deploy
run: |
git pull
docker compose up -d --build