From ce74f43736f4d23840d320cb12ecdef239ae2356 Mon Sep 17 00:00:00 2001 From: Matthieu Bessat Date: Mon, 6 Nov 2023 17:28:31 +0100 Subject: [PATCH] fix: workflow --- .forgejo/workflows/hugo.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/hugo.yaml b/.forgejo/workflows/hugo.yaml index 1877cd2..614bce5 100644 --- a/.forgejo/workflows/hugo.yaml +++ b/.forgejo/workflows/hugo.yaml @@ -2,8 +2,11 @@ on: [push] jobs: test: runs-on: docker + # by default it runs on a node.js debian image steps: - run: echo All Good + - name: Apt update and install + run: apt update && apt install -y rsync - uses: actions/checkout@v4 with: submodules: true