Files
gitea-test/.gitea/workflows/demo.yaml
T
pablo c52495b0cb
Gitea Actions Demo / build (push) Successful in 1s
Actualizar .gitea/workflows/demo.yaml
2026-06-19 09:54:48 +02:00

14 lines
356 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
git config --global http.sslVerify false
git clone ${{ gitea.server_url }}/${{ gitea.repository }}.git .
git checkout ${{ gitea.sha }}