From 02e63634e5d0130969114442cfd830217d6c6dd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ya=C3=ABl=20Dillies?= Date: Tue, 12 Dec 2023 20:56:11 +0100 Subject: [PATCH] Make sure the `docs/_include` folder exists Otherwise you get confusing errors in CI --- .github/workflows/push.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index fa6a713490..d7a5467b26 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -37,6 +37,7 @@ jobs: run: | grep -r --files-without-match 'import LeanAPAP' LeanAPAP | sort > 1.txt grep -r --files-with-match 'sorry' LeanAPAP | sort > 2.txt + mkdir -p docs/_includes comm -23 1.txt 2.txt | sed -e 's/^\(.*\)$/- [`\1`](https:\/\/github.com\/YaelDillies\/LeanAPAP\/blob\/master\/\1)/' > docs/_includes/files_to_upstream.md rm 1.txt 2.txt