com.wallstop-studios.unity-helpers 2.0.0-rc34 → 2.0.0-rc36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,16 @@ on:
6
6
  - main
7
7
  paths:
8
8
  - 'package.json'
9
+ workflow_dispatch:
10
+ inputs:
11
+ logLevel:
12
+ description: 'Log level'
13
+ required: true
14
+ default: 'warning'
15
+ environment:
16
+ description: 'Environment to deploy'
17
+ required: false
18
+ default: 'staging'
9
19
 
10
20
  jobs:
11
21
  publish_npm:
@@ -6,6 +6,19 @@ on:
6
6
  - main
7
7
  paths:
8
8
  - 'package.json'
9
+ workflow_dispatch:
10
+ inputs:
11
+ logLevel:
12
+ description: 'Log level'
13
+ required: true
14
+ default: 'warning'
15
+ environment:
16
+ description: 'Environment to deploy'
17
+ required: false
18
+ default: 'staging'
19
+
20
+ env:
21
+ UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
9
22
 
10
23
  jobs:
11
24
  package_unity:
@@ -51,15 +64,18 @@ jobs:
51
64
  - name: Activate Unity License
52
65
  uses: game-ci/unity-activate@v2
53
66
  if: env.should_build == 'true'
54
- env:
55
- UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
56
67
 
57
68
  - name: Set up Unity
58
69
  if: env.should_build == 'true'
59
- uses: game-ci/unity-builder@v3
70
+ uses: game-ci/unity-builder@v4
71
+ env:
72
+ UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
73
+ UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
74
+ UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
60
75
  with:
61
76
  unityVersion: 2022.3.5f1
62
77
  targetPlatform: StandaloneLinux64
78
+
63
79
 
64
80
  - name: Export Unity Package
65
81
  if: env.should_build == 'true'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.wallstop-studios.unity-helpers",
3
- "version": "2.0.0-rc34",
3
+ "version": "2.0.0-rc36",
4
4
  "displayName": "Unity Helpers",
5
5
  "description": "Various Unity Helper Library",
6
6
  "dependencies": {},