From 1c8b16f798cd63e3784e017fba68718334d487d7 Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Mon, 8 Feb 2021 19:32:53 +0900 Subject: [PATCH] chore: fix checkout version on unity --- .github/workflows/build-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 2f6a927..7bc5da6 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -98,7 +98,10 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 steps: + - run: echo ${{ needs.update-packagejson.outputs.sha }} - uses: actions/checkout@v2 + with: + ref: ${{ needs.update-packagejson.outputs.sha }} # Execute scripts: Export Package # /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -projectPath . -executeMethod PackageExporter.Export - name: Export unitypackage