From 0df892de68784f34a70c7599314e3db84848ee2e Mon Sep 17 00:00:00 2001 From: Johnny Cena Date: Wed, 20 Aug 2025 18:51:32 +0200 Subject: [PATCH] copy updated examples to the right place --- .github/workflows/update_examples.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_examples.yml b/.github/workflows/update_examples.yml index 6a9e08f5f..4da73e871 100644 --- a/.github/workflows/update_examples.yml +++ b/.github/workflows/update_examples.yml @@ -73,7 +73,7 @@ jobs: make PLATFORM=PLATFORM_WEB for category in core shapes textures models shaders text audio; do cd $category - target_dir="${{ github.workspace }}/../raylib.com/examples/$category/" + target_dir="${{ github.workspace }}/raylib.com/examples/$category/" find . -type f -name "*.wasm" -exec cp {} "$target_dir" \; find . -type f -name "*.html" -exec cp {} "$target_dir" \; find . -type f -name "*.js" -exec cp {} "$target_dir" \; @@ -83,7 +83,7 @@ jobs: - name: Push changes to raylib.com repo run: | cd raylib.com - git add examples + git add -A git commit -m "Update web examples" || echo "git exited with code 1, nothing changed" git push origin shell: bash