|
6 | 6 | type: string |
7 | 7 | godot-version: |
8 | 8 | type: string |
| 9 | + build-version: |
| 10 | + type: string |
9 | 11 |
|
10 | 12 | concurrency: |
11 | 13 | group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-export_templates_assemble |
|
51 | 53 |
|
52 | 54 | - name: Move linux x86_64 debug export template |
53 | 55 | shell: sh |
54 | | - run: mv godot.linuxbsd.template_debug.x86_64 templates/linux_debug.x86_64 |
| 56 | + run: mv godot.linuxbsd.template_debug.x86_64.jvm.${{ inputs.build-version }} templates/linux_debug.x86_64 |
55 | 57 |
|
56 | 58 | - name: Download linux x86_64 release export template |
57 | 59 | uses: actions/download-artifact@v4 |
|
61 | 63 |
|
62 | 64 | - name: Move linux x86_64 release export template |
63 | 65 | shell: sh |
64 | | - run: mv godot.linuxbsd.template_release.x86_64 templates/linux_release.x86_64 |
| 66 | + run: mv godot.linuxbsd.template_release.x86_64.jvm.${{ inputs.build-version }} templates/linux_release.x86_64 |
65 | 67 |
|
66 | 68 | - name: Download windows x86_64 debug export template |
67 | 69 | uses: actions/download-artifact@v4 |
|
71 | 73 |
|
72 | 74 | - name: Move windows x86_64 debug export template |
73 | 75 | shell: sh |
74 | | - run: mv godot.windows.template_debug.x86_64.exe templates/windows_debug_x86_64.exe |
| 76 | + run: mv godot.windows.template_debug.x86_64.jvm.${{ inputs.build-version }}.exe templates/windows_debug_x86_64.exe |
75 | 77 |
|
76 | 78 | - name: Download windows x86_64 release export template |
77 | 79 | uses: actions/download-artifact@v4 |
|
81 | 83 |
|
82 | 84 | - name: Move windows x86_64 release export template |
83 | 85 | shell: sh |
84 | | - run: mv godot.windows.template_release.x86_64.exe templates/windows_release_x86_64.exe |
| 86 | + run: mv godot.windows.template_release.x86_64.jvm.${{ inputs.build-version }}.exe templates/windows_release_x86_64.exe |
85 | 87 |
|
86 | 88 | - name: Download macos debug export template |
87 | 89 | uses: actions/download-artifact@v4 |
|
95 | 97 |
|
96 | 98 | - name: Create version.txt |
97 | 99 | run: | |
98 | | - refVersion=godot-kotlin-jvm-${{ inputs.godot-kotlin-jvm-version }} |
| 100 | + refVersion=${{ inputs.godot-version }}jvm-${{ inputs.build-version }} |
99 | 101 | templatesVersion=${refVersion//-/.} #replace `-` with `.` in templates version |
100 | 102 | echo "$templatesVersion" > templates/version.txt |
101 | 103 | shell: bash |
|
0 commit comments