From 5d5cc18678c0a37a83788a4382e61bbab801b6ba Mon Sep 17 00:00:00 2001 From: bartool Date: Tue, 6 Jan 2026 22:20:34 +0100 Subject: [PATCH] fix: correct typo in path for .env file creation in deployment workflow --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index c5ad15e..f244cfe 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v4 - name: Create .env file from Gitea secret - run: echo "${{ secrets.BACKEND_ENV }}" > backand/.env + run: echo "${{ secrets.BACKEND_ENV }}" > backend/.env - name: Build and restart Docker containers run: |