debug environment
Some checks failed
Build Images / build (push) Failing after 1m41s
Check / check (push) Successful in 3m43s

This commit is contained in:
Joakim Repomaa
2026-02-22 17:25:48 +02:00
parent 04dddc628f
commit c684beed09

View File

@@ -14,8 +14,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v6
- name: Debug environment
run: |
echo "=== System Info ==="
uname -a
nix --version
echo "=== Memory ==="
free -h || true
echo "=== Disk ==="
df -h /nix /tmp || true
echo "=== Nix Config ==="
nix show-config 2>&1 | head -20 || true
- name: Build aarch64 Image
run: nix build .#dockerImages.aarch64-linux.node --out-link ./image-aarch64.tar.gz
run: nix build .#dockerImages.aarch64-linux.node --out-link ./image-aarch64.tar.gz --option build-hook ""
- name: Push to Gitea Registry
if: github.event_name == 'push' && github.ref == 'refs/heads/main'