From c9d1e778b3f8959b83bbcff09e44f49a8fefbc62 Mon Sep 17 00:00:00 2001 From: ardi Date: Fri, 10 Oct 2025 09:10:08 +0000 Subject: [PATCH] Add .gitea/workflows/detect.yml --- .gitea/workflows/detect.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/detect.yml diff --git a/.gitea/workflows/detect.yml b/.gitea/workflows/detect.yml new file mode 100644 index 0000000..94ee917 --- /dev/null +++ b/.gitea/workflows/detect.yml @@ -0,0 +1,25 @@ +name: Detection + +on: + push: + branches: + - "main" + pull_request: + branches: + - "main" + +jobs: + build: + runs-on: k8s-runner-00 + env: + REGISTRY: registry.staging + IMAGE_NAME: ${{ gitea.repository }} + IMAGE_TAG: ${{ gitea.sha }} + steps: + - name: "Checkout repository" + uses: actions/checkout@v4 + + - name: "Files Root Project" + run: | + find . -type f | sed 's|^\./||' | jq -R . | jq -s . + \ No newline at end of file