container deploy fixed and debug info added

This commit is contained in:
Krivopolenov, Artemiy
2026-01-19 18:56:52 +01:00
parent f5fd35d12e
commit 61f65d6df0

View File

@@ -44,8 +44,27 @@ jobs:
credentials: credentials:
username: ${{ gitea.actor }} username: ${{ gitea.actor }}
password: ${{ secrets.CONTAINER_TOKEN }} password: ${{ secrets.CONTAINER_TOKEN }}
options: --pull always
steps: 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 - name: Checkout metadata repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with: