Skip to content

Commit 94ffd13

Browse files
committed
fix: unique name identifier
1 parent dd786ba commit 94ffd13

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/build.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name: project builder
33
on:
44
workflow_dispatch:
55
inputs:
6+
name:
7+
type: string
8+
description: name/identifier of the game
9+
required: true
10+
default: neebo
11+
612
repository:
713
type: string
814
description: path to github project, in format <owner>/<repo>
@@ -80,8 +86,8 @@ jobs:
8086
uses: actions/cache@v3
8187
with:
8288
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 }}
8591

8692
- name: build project for ${{ matrix.targetPlatform }}
8793
uses: game-ci/unity-builder@v4
@@ -100,7 +106,7 @@ jobs:
100106
path: build/${{ matrix.targetPlatform }}
101107

102108
- 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 .
104110

105111
- name: publish ${{ matrix.targetPlatform }} pre-release
106112
uses: softprops/action-gh-release@v1
@@ -109,7 +115,7 @@ jobs:
109115
prerelease: true
110116
name: ${{ github.event.inputs.repository }}-${{ matrix.targetPlatform }}
111117
tag_name: ${{ github.event.inputs.repository }}-${{ matrix.targetPlatform }}
112-
files: neebo-${{ matrix.targetPlatform }}.zip
118+
files: ${{ github.event.inputs.name }}-${{ matrix.targetPlatform }}.zip
113119
fail_on_unmatched_files: true
114120

115121
- name: write matrix outputs

0 commit comments

Comments
 (0)