commit a296d98865306b8c7d361c2f71b99deca0300443 Author: Kristina Date: Sat May 9 19:42:19 2026 +0200 Prueba CICD diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..5f733a6 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,13 @@ +name: Pipeline de prueba +on: + push: + branches: + - main + +jobs: + verificacion: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Ejecutar script de prueba + run: bash test.sh \ No newline at end of file diff --git a/test.sh b/test.sh new file mode 100644 index 0000000..f77894a --- /dev/null +++ b/test.sh @@ -0,0 +1,8 @@ +#!/bin/bash +echo "=== Inicio del script de prueba ===" +echo "Pipeline ejecutado correctamente" +echo "Fecha: $(date)" +echo "Directorio actual: $(pwd)" +echo "Archivos en el repositorio:" +ls -la +echo "=== Fin del script ===" \ No newline at end of file