From ba8c730fb364de74ed727f174476b4b773b698ec Mon Sep 17 00:00:00 2001 From: Leon van Kammen Date: Fri, 17 May 2024 18:02:18 +0200 Subject: [PATCH] main: minor bugfix --- .github/workflows/website.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 8bc8afe..7f4843c 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -41,9 +41,9 @@ jobs: - name: create index.glb run: cp example/assets/*.glb . - name: cleanup 1 - run: test -f example/three/sandbox/other.gltf && rm example/three/sandbox/other.gltf + run: test -f example/three/sandbox/other.gltf && rm example/three/sandbox/other.gltf || true - name: cleanup 2 - run: test -f example/three/sandbox/assets/2wa.gitlab.io && rm -rf example/three/sandbox/assets/2wa.gitlab.io + run: test -f example/three/sandbox/assets/2wa.gitlab.io && rm -rf example/three/sandbox/assets/2wa.gitlab.io || true # working-directory: ./ - name: Upload artifact uses: actions/upload-pages-artifact@v2