From ac9a02e832f70cfcfdddce779e763429039323d5 Mon Sep 17 00:00:00 2001 From: Philip Peterson <1326208+philip-peterson@users.noreply.github.com> Date: Thu, 11 Jun 2026 22:51:15 -0700 Subject: [PATCH] wip --- .gitea/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5a8d82c..83875ea 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,7 +15,15 @@ jobs: image: quay.io/podman/stable options: --privileged steps: - - uses: actions/checkout@v4 + - name: Install git + run: dnf install -y --quiet git-core + + - name: Checkout + run: | + git clone --depth=1 \ + "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@${{ env.REGISTRY }}/${{ github.repository }}.git" \ + . + git checkout "${{ github.sha }}" - name: Log in to registry run: |