Skip to content

Commit ee63b45

Browse files
committed
ci: Store build artifacts
1 parent 31b27ee commit ee63b45

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/actions/build-shared/action.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,12 @@ runs:
4444
working-directory: ${{env.GITHUB_WORKSPACE}}
4545
run: msbuild ${{inputs.solution-name}}_${{inputs.platform-name}}.sln /m -verbosity:minimal /p:Configuration=${{inputs.configuration-name}} /p:Platform=${{inputs.platform-name}}
4646
shell: cmd
47+
48+
- name: 'Upload ${{inputs.solution-name}}_${{inputs.platform-name}} build artifacts'
49+
uses: actions/upload-artifact@v4
50+
with:
51+
name: '${{inputs.solution-name}}_${{inputs.platform-name}}'
52+
path: ..\game\
53+
if-no-files-found: error
54+
retention-days: 1
55+
compression-level: 9

0 commit comments

Comments
 (0)