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