From f4552164f7722b6b94c31bc1f035b87e7c15787d Mon Sep 17 00:00:00 2001 From: Yingtao Liu Date: Mon, 22 Jan 2024 14:58:27 -0800 Subject: [PATCH] relative path --- .github/workflows/pr_to_gh_page_repo.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr_to_gh_page_repo.yml b/.github/workflows/pr_to_gh_page_repo.yml index caf836aa2..f78057e5c 100644 --- a/.github/workflows/pr_to_gh_page_repo.yml +++ b/.github/workflows/pr_to_gh_page_repo.yml @@ -53,11 +53,11 @@ jobs: git checkout -b $BRANCH_NAME # Remove Static Folder - rm -r $FOLDER/ui/src/static - mkdir $FOLDER/ui/src/static - cp $GITHUB_WORKSPACE/artifact/*.wasm $FOLDER/ui/src/static - cp $GITHUB_WORKSPACE/artifact/*.js $FOLDER/ui/src/static - cp $GITHUB_WORKSPACE/artifact/playground.js.LICENSE.txt $FOLDER/ui/playground.js.LICENSE.txt + rm -r ui/src/static + mkdir ui/src/static + cp $GITHUB_WORKSPACE/artifact/*.wasm ui/src/static + cp $GITHUB_WORKSPACE/artifact/*.js ui/src/static + cp $GITHUB_WORKSPACE/artifact/playground.js.LICENSE.txt ui/playground.js.LICENSE.txt # Commit the changes and push the feature branch to origin git add .