Starting learning cicd from scratch
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s

Demo gitea action
This commit is contained in:
2026-02-19 00:36:02 +01:00
parent 1a09a62a4c
commit 400e7b6595
3 changed files with 19 additions and 72 deletions
-44
View File
@@ -1,44 +0,0 @@
name: CD staged deploy
on:
push:
branches: [main]
jobs:
detect-changes:
runs-on: deploy
outputs:
services: ${{ steps.set-matrix.outputs.services }}
steps:
- name: Fix git ownership and Fetch
run: |
git config --global --add safe.directory /srv/homelab
cd /srv/homelab
git fetch origin main
git reset --hard origin/main
- id: set-matrix
name: Generate service list
run: |
cd /srv/homelab
# Собираем список папок в JSON-массив для матрицы
DIRS=$(git diff --name-only HEAD~1 HEAD | cut -d/ -f1 | sort -u | xargs -I{} sh -c 'if [ -f {}/compose.yaml ] || [ -f {}/docker-compose.yaml ]; then echo \"{}\"; fi' | paste -sd,)
echo "services=[$DIRS]" >> $GITEA_OUTPUT
apply-deploy:
needs: detect-changes
if: needs.detect-changes.outputs.services != '[]'
runs-on: deploy
strategy:
matrix:
service: ${{ fromJson(needs.detect-changes.outputs.services) }}
fail-fast: false
name: Deploy ${{ matrix.service }}
steps:
- name: Deploy Service
run: |
cd /srv/homelab/${{ matrix.service }}
echo "Syncing and starting ${{ matrix.service }}..."
docker compose pull
docker compose up -d --remove-orphans