From 98151392f082942d380c6704aa94dc6ee2be147a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fynn=20Beuttenm=C3=BCller?= Date: Fri, 8 Nov 2024 14:17:39 +0100 Subject: [PATCH] fix copy presentations --- .github/workflows/build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 16b6cdec..844cbb5e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -180,7 +180,9 @@ jobs: -o ./dist bioimageio.core - run: cp README.md ./dist/README.md - name: copy rendered presentations - run: cp -r ./presentations/*.html ./dist/presentations + run: | + mkdir ./dist/presentations + cp -r ./presentations/*.html ./dist/presentations/ - name: Deploy to gh-pages 🚀 uses: JamesIves/github-pages-deploy-action@v4 with: