From 146c326dad4f3be7ed9ede897e2817f3f31fb535 Mon Sep 17 00:00:00 2001 From: alessandrofelder Date: Fri, 28 Jul 2023 16:08:52 +0100 Subject: [PATCH 1/2] add a new example slide shows * how to include an image * how to include a webpage via a preview link --- index.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.qmd b/index.qmd index 90b51a4..c661b38 100644 --- a/index.qmd +++ b/index.qmd @@ -77,7 +77,7 @@ from pathlib import Path print("Hello world") ``` -## You can execute cold without showing that you have by using #|echo: false +## You can execute code without showing that you have by using #|echo: false ```{python} #| echo: false From 3ca8b09d08aa85d0fd12e94758360fd74e513bcc Mon Sep 17 00:00:00 2001 From: niksirbi Date: Wed, 9 Aug 2023 17:27:07 +0100 Subject: [PATCH 2/2] copy img folder to build folder --- .github/workflows/render_and_deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/render_and_deploy.yml b/.github/workflows/render_and_deploy.yml index e494bb3..6319311 100644 --- a/.github/workflows/render_and_deploy.yml +++ b/.github/workflows/render_and_deploy.yml @@ -44,6 +44,7 @@ jobs: mv index.html build/ mv index_files build/ touch build/.nojekyll + cp -r img build/ - name: Deploy if: github.event_name == 'push' && github.ref_type == 'tag'