Skip to content

Commit

Permalink
fix: update unity auth
Browse files Browse the repository at this point in the history
  • Loading branch information
EuleMitKeule committed Dec 3, 2022
1 parent 44f29ab commit 82553c8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/deploy-client-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:

- name: Running unit tests
uses: game-ci/unity-test-runner@v2.0-alpha-2
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
with:
artifactsPath: ./deploy-client-test-results/

Expand Down Expand Up @@ -63,6 +67,10 @@ jobs:
- name: Building Client
uses: game-ci/unity-builder@v2.0-alpha-6
id: build
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
with:
targetPlatform: StandaloneLinux64
buildsPath: ./deploy-client-builds/
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/deploy-client-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:

- name: Running unit tests
uses: game-ci/unity-test-runner@v2.0-alpha-2
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
with:
artifactsPath: ./deploy-client-test-results/

Expand Down Expand Up @@ -63,6 +67,10 @@ jobs:
- name: Building Client
uses: game-ci/unity-builder@v2.0-alpha-6
id: build
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
with:
targetPlatform: StandaloneWindows64
buildsPath: ./deploy-client-builds/
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ jobs:
- name: Build Server
uses: game-ci/unity-builder@v2.1.2
id: build
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
with:
targetPlatform: StandaloneLinux64
buildsPath: ./deploy-server-builds/
Expand Down

0 comments on commit 82553c8

Please sign in to comment.