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 31b27ee commit ee63b45Copy full SHA for ee63b45
.github/actions/build-shared/action.yml
@@ -44,3 +44,12 @@ runs:
44
working-directory: ${{env.GITHUB_WORKSPACE}}
45
run: msbuild ${{inputs.solution-name}}_${{inputs.platform-name}}.sln /m -verbosity:minimal /p:Configuration=${{inputs.configuration-name}} /p:Platform=${{inputs.platform-name}}
46
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