diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index bebd01c..21fb882 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -1,16 +1,17 @@ -name: Test workflow - +name: Pipeline joseph on: push: branches: - main jobs: - test: - runs-on: docker + verificacion: + runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Hello - run: echo "Workflow funcionando" \ No newline at end of file + - uses: actions/checkout@v3 + - name: Mostrar info del entorno + run: | + echo "Push hecho por: ${{ github.actor }}" + echo "Rama: ${{ github.ref }}" + echo "Commit: ${{ github.sha }}" + ls -la \ No newline at end of file