We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36afd67 commit 9625f5cCopy full SHA for 9625f5c
.github/workflows/config.yml
@@ -1,18 +1,18 @@
1
-name: CI
+name: unity-ci-example
2
3
on: [push]
4
5
jobs:
6
build:
7
-
8
runs-on: ubuntu-latest
9
+ container: docker://gableroux/unity3d:2019.1.0f2
10
steps:
11
- - uses: docker://gableroux/unity3d:2019.1.0f2
+ - uses: actions/checkout@master
12
- name: Unity Activate
+ env:
13
+ SECRET_PASSPHRASE: ${{ secrets.SECRET_PASSPHRASE }}
14
run: |
- apt update && apt install cl-base64 -y
15
- echo $UNITY_LICENSE_BASE64 | base64 -di | tr -d '\r' > Unity.ulf
+ gpg --quiet --batch --yes --decrypt --passphrase="$SECRET_PASSPHRASE" --output ./Unity.ulf ./Unity.ulf.gpg
16
/opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -manualLicenseFile Unity.ulf || exit 0
17
- name: Create Empty Project
18
Unity.ulf.gpg
1.09 KB
0 commit comments