From 542bf1a45bf3a44bda2e7b53da358adfa358eb3d Mon Sep 17 00:00:00 2001 From: Yingtao Liu Date: Mon, 22 Jan 2024 15:57:36 -0800 Subject: [PATCH] path --- .github/workflows/pr_to_gh_page_repo.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pr_to_gh_page_repo.yml b/.github/workflows/pr_to_gh_page_repo.yml index 6a041a8a9..deb160583 100644 --- a/.github/workflows/pr_to_gh_page_repo.yml +++ b/.github/workflows/pr_to_gh_page_repo.yml @@ -18,11 +18,11 @@ jobs: - name: copy Bundle run: | - mkdir -p ~/home/artifact - cp dist/*.wasm $GITHUB_WORKSPACE/artifact - cp dist/*.js $GITHUB_WORKSPACE/artifact - cp dist/*.txt $GITHUB_WORKSPACE/artifact - ls ~/home/artifact >> $GITHUB_STEP_SUMMARY + mkdir -p ~/artifact + cp dist/*.wasm ~/artifact + cp dist/*.js ~/artifact + cp dist/*.txt ~/artifact + ls ~/artifact >> $GITHUB_STEP_SUMMARY - name: set up SSH uses: shimataro/ssh-key-action@v2 @@ -47,9 +47,9 @@ jobs: # port in the changes rm -r ui/src/static mkdir ui/src/static - cp ~/home/artifact/*.wasm ui/src/static - cp ~/home/artifact/*.js ui/src/static - cp ~/home/artifact/playground.js.LICENSE.txt ui/playground.js.LICENSE.txt + cp ~/artifact/*.wasm ui/src/static + cp ~/artifact/*.js ui/src/static + cp ~/artifact/playground.js.LICENSE.txt ui/playground.js.LICENSE.txt git add .