añado pipeline CI/CD para joseph
All checks were successful
Pipeline joseph / verificacion (push) Successful in 9s
All checks were successful
Pipeline joseph / verificacion (push) Successful in 9s
This commit is contained in:
parent
130558a4c6
commit
0b928e6e25
1 changed files with 17 additions and 0 deletions
17
.gitea/workflows/ci.yaml
Normal file
17
.gitea/workflows/ci.yaml
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
name: Pipeline joseph
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
verificacion:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- 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
|
||||||
Loading…
Reference in a new issue