From d10ee5509228066ddda541649c787865c02bf9e5 Mon Sep 17 00:00:00 2001 From: Florian Date: Tue, 24 Jun 2025 11:39:28 +0200 Subject: [PATCH] Refactor build.yaml to add step names for clarity and restore token usage for repository checkout --- .gitea/workflows/build.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e1fdcc6..9e7861b 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -12,14 +12,16 @@ jobs: steps: - - uses: actions/checkout@v4 + - name: Checkout Repository + uses: actions/checkout@v4 - - uses: actions/checkout@v4 + - name: Checkout homebrewery + uses: actions/checkout@v4 with: github-server-url: https://github.com repository: naturalcrit/homebrewery.git ref: ${{ github.event.release.tag_name }} - token: "" + token: ${{ secrets.GH_TOKEN }} path: homebrewery - name: Login to GitHub Container Registry