fix-create-site-workflow #2

Merged
artem merged 7 commits from fix-create-site-workflow into main 2026-01-19 22:00:14 +03:00
Showing only changes of commit 61f65d6df0 - Show all commits

View File

@@ -44,8 +44,27 @@ jobs:
credentials:
username: ${{ gitea.actor }}
password: ${{ secrets.CONTAINER_TOKEN }}
options: --pull always
steps:
- name: Debug container environment
run: |
echo "=== Container Debug Info ==="
echo "Image being used: ${{ env.REGISTRY_HOST }}/${{ gitea.repository }}/${{ env.IMAGE_NAME }}:latest"
echo "Current user: $(whoami)"
echo "PATH: $PATH"
echo ""
echo "=== Installed tools ==="
pwsh -Version || echo "PowerShell not found!"
zola --version || echo "Zola not found!"
git --version || echo "Git not found!"
aws --version || echo "AWS CLI not found!"
node --version || echo "Node.js not found!"
which node || echo "Node executable not in PATH"
echo ""
echo "=== Alpine packages with 'node' ==="
apk info | grep node || echo "No node packages found"
- name: Checkout metadata repository
uses: actions/checkout@v4
with: