From 6b3c85d31f8e21314b164060ab89cd59759a3d80 Mon Sep 17 00:00:00 2001 From: eni <129673786+enitimeago@users.noreply.github.com> Date: Thu, 1 Feb 2024 21:18:17 +0900 Subject: [PATCH] test https://github.com/game-ci/unity-test-runner/issues/223 --- .github/workflows/gameci.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/gameci.yml b/.github/workflows/gameci.yml index 36795d2..4a058e2 100644 --- a/.github/workflows/gameci.yml +++ b/.github/workflows/gameci.yml @@ -20,11 +20,18 @@ jobs: https://vpm.nadena.dev/vpm.json https://hai-vr.github.io/vpm-listing/index.json - - uses: actions/cache@v2 - with: - path: Library - key: Library-${{ runner.os }}-unity-2019.4.31f1 - restore-keys: Library- + # - uses: actions/cache@v2 + # with: + # path: Library + # key: Library-${{ runner.os }}-unity-2019.4.31f1 + # restore-keys: Library- + + - name: copy dir to new dir + run: | + pwd + folderName=$(echo "${PWD##*/}") + rsync -r "$GITHUB_WORKSPACE" "copiedProject" + ls -F "copiedProject/$folderName" - uses: game-ci/unity-test-runner@v4 env: @@ -35,7 +42,7 @@ jobs: githubToken: ${{ secrets.GITHUB_TOKEN }} unityVersion: 2019.4.31f1 #packageMode: true - #projectPath: Packages/enitimeago.non-destructive-mmd + projectPath: ./copiedProject - uses: actions/upload-artifact@v3 if: always()