From 1a70567271ebbcf9dac5f9643cf0e6173c686755 Mon Sep 17 00:00:00 2001 From: Gabriel Le Breton Date: Sat, 13 Apr 2024 15:09:20 -0400 Subject: [PATCH] Update test runner example for proper personal license setup Add missing email and password to code snippet --- docs/03-github/03-test-runner.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/03-github/03-test-runner.mdx b/docs/03-github/03-test-runner.mdx index 6e91cd79..bb8b05ac 100644 --- a/docs/03-github/03-test-runner.mdx +++ b/docs/03-github/03-test-runner.mdx @@ -32,6 +32,8 @@ Then, define the test step as follows: - uses: game-ci/unity-test-runner@v4 env: UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} + UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }} + UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} with: projectPath: path/to/your/project githubToken: ${{ secrets.GITHUB_TOKEN }}