From aa4ad9ef8e4618eef86a040c4da66a592eac0995 Mon Sep 17 00:00:00 2001 From: mirage <119869686+ClementBobin@users.noreply.github.com> Date: Tue, 31 Mar 2026 10:22:11 +0200 Subject: [PATCH] =?UTF-8?q?refactor:=20mise=20=C3=A0=20jour=20la=20configu?= =?UTF-8?q?ration=20des=20variables=20d=E2=80=99environnement=20dans=20pr-?= =?UTF-8?q?endpoint-check.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/pr-endpoint-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pr-endpoint-check.yml b/.gitea/workflows/pr-endpoint-check.yml index aadf030..e487e80 100644 --- a/.gitea/workflows/pr-endpoint-check.yml +++ b/.gitea/workflows/pr-endpoint-check.yml @@ -13,8 +13,8 @@ jobs: - name: Configure environment for CI run: | - echo "ASPNETCORE_ENVIRONMENT=Development" >> $ACT_ENV - echo "Repository=Db" >> $ACT_ENV + echo "ASPNETCORE_ENVIRONMENT=Development" >> "${GITHUB_ENV:-$ACT_ENV}" + echo "Repository=Db" >> "${GITHUB_ENV:-$ACT_ENV}" - name: Setup .NET 10 uses: actions/setup-dotnet@v4