ci: create repos.conf dir before writing repo configs
CI / build (push) Successful in 5m50s

A fresh gentoo/stage3 container has no /etc/portage/repos.conf directory, so
writing gentoo.conf failed. mkdir -p it first in both workflows and the bump
script.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ali
2026-05-20 19:59:46 -05:00
parent f2902d4a1f
commit 57e0428658
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@ jobs:
- name: Configure portage + install tooling
run: |
mkdir -p /etc/portage/repos.conf
printf '[DEFAULT]\nmain-repo = gentoo\n\n[gentoo]\nlocation = /var/db/repos/gentoo\n' \
> /etc/portage/repos.conf/gentoo.conf
sed -i 's/^verify-signature = true/verify-signature = false/' \