We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4826000 commit 6eb19d2Copy full SHA for 6eb19d2
1 file changed
.github/workflows/create-release-pr.yml
@@ -24,7 +24,7 @@ permissions:
24
jobs:
25
compose-unity-release:
26
name: Compose Unity Release
27
- runs-on: ubuntu-latest
+ runs-on: macos-latest
28
29
env:
30
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -43,10 +43,18 @@ jobs:
43
brew install gh jq || true
44
gh auth status || gh auth login --with-token <<< "$GH_TOKEN"
45
46
+ - name: Cache Unity Editor
47
+ uses: actions/cache@v4
48
+ with:
49
+ path: /home/runner/Unity/Hub/Editor
50
+ key: UnityEditor-${{ runner.os }}
51
+ restore-keys: |
52
+ UnityEditor-${{ runner.os }}
53
+
54
- name: Setup Unity
55
uses: buildalon/unity-setup@v2.1.1
56
with:
- unity-version: 2021.3.0f1
57
+ version-file: 'OneSignalExample/ProjectSettings/ProjectVersion.txt'
58
59
- uses: buildalon/activate-unity-license@v2
60
0 commit comments