fix: install git in runner step
Some checks failed
Tangle and Deploy / tangle (push) Failing after 26s

This commit is contained in:
Hermes
2026-05-15 07:15:00 +00:00
parent e5d78da3cb
commit aa6aacd346

View File

@@ -7,12 +7,13 @@ jobs:
steps:
- name: Checkout
run: |
apt-get update -qq && apt-get install -y -qq git 2>&1 | tail -2
mkdir -p /workspace
git clone --depth 1 \
http://amr:ef7dbcf8e7d4602ef5baaebacbe294723a0b45cf@10.10.10.201:3001/amr/infrastructure.git \
/workspace/infrastructure
- name: Tangle infrastructure.org
- name: Tangle
run: |
docker run --rm \
-v /:/host \
@@ -20,7 +21,7 @@ jobs:
debian:stable-slim \
bash -c "cp -r /workspace /host/tmp/infra-tangle && chroot /host /usr/local/bin/tangle-deploy /tmp/infra-tangle"
- name: Restart affected services
- name: Restart services
run: |
docker run --rm \
-v /:/host \