From c5dd94c995ec35ec30ab8761d58153e955b72bb6 Mon Sep 17 00:00:00 2001 From: Lukas Greve Date: Fri, 25 Jul 2025 22:48:00 +0200 Subject: [PATCH] add simple checkout workflow --- workflows/checkout.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 workflows/checkout.yml diff --git a/workflows/checkout.yml b/workflows/checkout.yml new file mode 100644 index 0000000..52ab454 --- /dev/null +++ b/workflows/checkout.yml @@ -0,0 +1,15 @@ +name: checkout + +on: + push: + tags: + - '*' + +jobs: + checkout: + runs-on: ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest + + steps: + - uses: https://git.phyllo.me/actions/checkout@v4 + with: + fetch-depth: 0 \ No newline at end of file