From 4a7343cbc503c5fbdf84c622c7b6769762181493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Gonz=C3=A1lez?= Date: Fri, 8 May 2026 10:55:24 +0200 Subject: [PATCH] probar ci/ce --- .forgejo/workflows/test.yml | 11 +++++++++++ test.sh | 4 ++++ 2 files changed, 15 insertions(+) create mode 100644 .forgejo/workflows/test.yml create mode 100755 test.sh diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000..bf1f836 --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -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 diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..81f3763 --- /dev/null +++ b/test.sh @@ -0,0 +1,4 @@ +#|/bin/bash +echo Es un test de CI/CD +echo date +uname -a