probar ci/ce
This commit is contained in:
parent
2400554259
commit
4a7343cbc5
2 changed files with 15 additions and 0 deletions
11
.forgejo/workflows/test.yml
Normal file
11
.forgejo/workflows/test.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
name: run-on-push
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
jobs:
|
||||
run-script:
|
||||
runs-on: self-hosted # or the label your runner provides
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Run script
|
||||
run: ./test.sh
|
||||
4
test.sh
Executable file
4
test.sh
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#|/bin/bash
|
||||
echo Es un test de CI/CD
|
||||
echo date
|
||||
uname -a
|
||||
Loading…
Reference in a new issue