From 0fb6312706cbb723339a995d6ee3ecef85668523 Mon Sep 17 00:00:00 2001
From: MrMeeb <mrmeeb@noreply.git.mrmeeb.stream>
Date: Sat, 22 Mar 2025 08:49:05 +0000
Subject: [PATCH] Checkout repo before running build stage of validate image
 action

---
 .gitea/workflows/build-main.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitea/workflows/build-main.yaml b/.gitea/workflows/build-main.yaml
index e432081..09f67ce 100644
--- a/.gitea/workflows/build-main.yaml
+++ b/.gitea/workflows/build-main.yaml
@@ -12,9 +12,12 @@ jobs:
   "Validate Image":
     runs-on: [ubuntu-docker-latest, linux/amd64]
     steps:
+      - name: Checkout
+        uses: actions/checkout@v4
       - name: Build locally
         uses: docker/build-push-action@v5
         with:
+          context: .
           load: true
           tags: ${{ env.TEST_TAG }}
           provenance: false