fix: correct typo in path for .env file creation in deployment workflow
All checks were successful
Deploy Application / deploy (push) Successful in 12s
Test runner / check-runner (push) Successful in 3s

This commit is contained in:
2026-01-06 22:20:34 +01:00
parent 93798904d1
commit 5d5cc18678

View File

@@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Create .env file from Gitea secret - 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 - name: Build and restart Docker containers
run: | run: |