@@ -3,6 +3,12 @@ name: project builder
3
3
on :
4
4
workflow_dispatch :
5
5
inputs :
6
+ name :
7
+ type : string
8
+ description : name/identifier of the game
9
+ required : true
10
+ default : neebo
11
+
6
12
repository :
7
13
type : string
8
14
description : path to github project, in format <owner>/<repo>
80
86
uses : actions/cache@v3
81
87
with :
82
88
path : Library
83
- key : Library-${{ matrix.targetPlatform }}
84
- restore-keys : Library-${{ matrix.targetPlatform }}
89
+ key : Library-${{ github.event.inputs.name }}-${{ matrix.targetPlatform }}
90
+ restore-keys : Library-${{ github.event.inputs.name }}-${{ matrix.targetPlatform }}
85
91
86
92
- name : build project for ${{ matrix.targetPlatform }}
87
93
uses : game-ci/unity-builder@v4
@@ -100,7 +106,7 @@ jobs:
100
106
path : build/${{ matrix.targetPlatform }}
101
107
102
108
- name : archive ${{ matrix.targetPlatform }} release
103
- run : cd build/${{ matrix.targetPlatform }} && zip -r ../../neebo -${{ matrix.targetPlatform }}.zip .
109
+ run : cd build/${{ matrix.targetPlatform }} && zip -r ../../${{ github.event.inputs.name }} -${{ matrix.targetPlatform }}.zip .
104
110
105
111
- name : publish ${{ matrix.targetPlatform }} pre-release
106
112
uses : softprops/action-gh-release@v1
@@ -109,7 +115,7 @@ jobs:
109
115
prerelease : true
110
116
name : ${{ github.event.inputs.repository }}-${{ matrix.targetPlatform }}
111
117
tag_name : ${{ github.event.inputs.repository }}-${{ matrix.targetPlatform }}
112
- files : neebo -${{ matrix.targetPlatform }}.zip
118
+ files : ${{ github.event.inputs.name }} -${{ matrix.targetPlatform }}.zip
113
119
fail_on_unmatched_files : true
114
120
115
121
- name : write matrix outputs
0 commit comments