From 19b3d9969deb9ec3df7b592705ec534dcec71550 Mon Sep 17 00:00:00 2001 From: timokluser-dev Date: Fri, 22 Sep 2023 21:19:10 +0200 Subject: [PATCH] install bash & curl as requirement --- .github/workflows/generate.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index 708c4ba7..31f923ed 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -17,7 +17,9 @@ jobs: - name: checkout uses: actions/checkout@v4 - name: install - run: npm ci + run: | + apk add --no-cache bash curl + npm ci - name: generate run: npm run grab -- --site=tv.blue.ch --lang=de --days=7 --output=dist/guide.xml - name: upload artifact