From 2c1c09943c7311482b33b3c9e8a948c340b8ec06 Mon Sep 17 00:00:00 2001 From: Florian Schmitt Date: Mon, 16 Dec 2024 14:23:24 +0300 Subject: [PATCH] fix(ci): ping was not found --- .forgejo/workflows/artifact.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/artifact.yaml b/.forgejo/workflows/artifact.yaml index 529a452..f67d3bf 100644 --- a/.forgejo/workflows/artifact.yaml +++ b/.forgejo/workflows/artifact.yaml @@ -9,7 +9,9 @@ jobs: runs-on: debian-latest steps: - name: debug style - run: ping git.distrilab.fr -c1 + run: | + apt-get install -y iputils-ping + ping git.distrilab.fr -c1 - name: checkout repository uses: actions/checkout@v4 - name: npm ci