From 4c2265cde6ad2235493e797f644e183a1cd3090a Mon Sep 17 00:00:00 2001 From: Vezpi Date: Mon, 30 Mar 2026 09:29:42 +0000 Subject: [PATCH 1/2] fix: revert to git clone instead of checkout --- .gitea/workflows/test.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index c2b25c9..c9c4ff1 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -23,10 +23,7 @@ jobs: docker_folder_changed: ${{ steps.docker_folder.outputs.changed }} steps: - name: Checkout Repository - uses: actions/checkout@v4 - with: - ref: ${{ gitea.ref_name }} - token: ${{ secrets.REPO_TOKEN }} + run: git clone --branch ${{ gitea.ref_name }} https://${{ secrets.REPO_TOKEN }}@git.vezpi.com/Vezpi/blog.git . - name: Check Latest Hugo Version id: get_latest @@ -81,10 +78,7 @@ jobs: shell: sh steps: - name: Checkout Repository - uses: actions/checkout@v4 - with: - ref: ${{ gitea.ref_name }} - token: ${{ secrets.REPO_TOKEN }} + run: git clone --branch ${{ gitea.ref_name }} https://${{ secrets.REPO_TOKEN }}@git.vezpi.com/Vezpi/blog.git . - name: Build Docker Image run: | -- 2.49.1 From 3de1290d1c662cf1a39efbdf937023e9ab2d9412 Mon Sep 17 00:00:00 2001 From: Vezpi Date: Fri, 3 Apr 2026 12:40:27 +0000 Subject: [PATCH 2/2] fix: RelPermalink --- layouts/partials/article/components/details.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/article/components/details.html b/layouts/partials/article/components/details.html index 6f2d43a..1f72f92 100644 --- a/layouts/partials/article/components/details.html +++ b/layouts/partials/article/components/details.html @@ -7,7 +7,7 @@ {{ $color := partial "helper/color-from-str" .LinkTitle }} {{ $BackgroundColor := default $color.BackgroundColor .Params.style.background }} {{ $TextColor := default $color.TextColor .Params.style.color }} - + {{ .LinkTitle }} {{ end }} @@ -16,7 +16,7 @@

- + {{- $Page.Title -}}

-- 2.49.1