From 510d2980ac20b411ac6f97c296485789c3243376 Mon Sep 17 00:00:00 2001 From: zuadi <159902586+zuadi@users.noreply.github.com> Date: Thu, 29 May 2025 10:20:14 +0200 Subject: [PATCH] fix secret name --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 397b338..6bb0d2f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,9 +42,9 @@ jobs: - name: Set up Git credentials for private modules run: | - git config --global url."https://oauth2:${{ secrets.GH_PAT_FOR_MODULES }}@github.com".insteadOf "https://github.com" + git config --global url."https://oauth2:${{ secrets.GH_PAT }}@github.com".insteadOf "https://github.com" env: - GH_PAT_FOR_MODULES: ${{ secrets.GH_PAT_FOR_MODULES }} # Make sure the secret is passed + GH_PAT_FOR_MODULES: ${{ secrets.GH_PAT }} - name: Go Mod Tidy & Download working-directory: ./backend