Add verbose output to environment file creation step
Some checks failed
build-and-deploy / build (push) Successful in 20s
build-and-deploy / deploy (push) Failing after 2s

This commit is contained in:
2025-08-04 14:08:54 -06:00
parent c594aea78c
commit b9db7d7c62

View File

@@ -38,7 +38,11 @@ jobs:
run: docker login gitea.nucleoriofrio.com -u nucleo000 -p 7bc7b2fcd283bd6a251bef3ede368b7f897c919d run: docker login gitea.nucleoriofrio.com -u nucleo000 -p 7bc7b2fcd283bd6a251bef3ede368b7f897c919d
- name: Create environment file - name: Create environment file
run: echo "NAS_PASSWORD=${{ secrets.NAS_PASSWORD }}" > .env run: |
echo "Creating .env file..."
echo "NAS_PASSWORD=${{ secrets.NAS_PASSWORD }}" > .env
echo "Environment file created successfully"
ls -la .env
- name: Pull fresh images used in compose - name: Pull fresh images used in compose
run: docker compose pull run: docker compose pull