Update .gitea/workflows/release.yml
Some checks failed
CI / Build & Test (push) Failing after 1m41s
Release / Build Release Binaries via hero-git installer (push) Failing after 22s

This commit is contained in:
2025-11-20 11:12:23 +00:00
parent f19385f614
commit 240fa060ed

View File

@@ -33,6 +33,25 @@ jobs:
- name: Prepare bin output dir - name: Prepare bin output dir
run: mkdir -p hero-bin run: mkdir -p hero-bin
- name: Run horus_full_install installer in container
run: |
docker run --rm \
-v "$PWD/hero-bin:/root/hero/bin" \
-e HEROLIB_REF=development_nile_installers \
"$IMAGE_NAME" \
bash -lc '
set -euxo pipefail
cd /opt/herolib
pwd
git rev-parse --abbrev-ref HEAD || true
./examples/installers/horus/horus_full_install.vsh
echo "===== AFTER INSTALL, ls -R /root ====="
ls -R /root || true
echo "===== AFTER INSTALL, ls -R /root/hero ====="
ls -R /root/hero || true
'
- name: Run horus_full_install installer in container - name: Run horus_full_install installer in container
run: | run: |
docker run --rm \ docker run --rm \