From e822a08c60b442e12ad435a749eaa19a0f0db07f Mon Sep 17 00:00:00 2001 From: zeramorphic <50671761+zeramorphic@users.noreply.github.com> Date: Wed, 15 Nov 2023 20:50:54 +0000 Subject: [PATCH] Create `_includes` folder if it doesn't exist (#5) --- .github/workflows/push.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1bcf1b654a..4e5facc8ca 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -42,6 +42,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\/main\/\1)/' > docs/_includes/files_to_upstream.md rm 1.txt 2.txt