Add git host mapping for CI

This commit is contained in:
Codex Agent
2025-12-14 09:30:09 +01:00
parent 627d147be2
commit 842b643ecd

View File

@@ -24,6 +24,15 @@ jobs:
contents: read
packages: write
steps:
- name: Add git.wylab.me host mapping
run: |
if ! grep -q "$HOST_NAME" /etc/hosts; then
echo "$HOST_IP $HOST_NAME" | sudo tee -a /etc/hosts
fi
env:
HOST_IP: 85.59.185.148
HOST_NAME: git.wylab.me
- name: Checkout repository
uses: actions/checkout@v4