Skip to content

Commit 1311036

Browse files
authored
Update build.yml
1 parent 296a280 commit 1311036

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/build.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -83,19 +83,24 @@ jobs:
8383
Write-Output "Generated Filename: $outputFileName"
8484
8585
# Write outputs to GITHUB_OUTPUT
86-
"version=$version" >> "$GITHUB_OUTPUT"
87-
"filename=$outputFileName" >> "$GITHUB_OUTPUT"
86+
"version=$version" >> $GITHUB_OUTPUT
87+
"filename=$outputFileName" >> $GITHUB_OUTPUT
8888
8989
continue-on-error: false
9090

91+
- name: Debug Outputs
92+
run: |
93+
echo "Version: ${{ steps.get_version.outputs.version }}"
94+
echo "Filename: ${{ steps.get_version.outputs.filename }}"
95+
9196
- name: Add MSBuild to PATH
9297
uses: microsoft/setup-msbuild@v2
9398

94-
- name: Build
95-
working-directory: ${{env.GITHUB_WORKSPACE}}
99+
#- name: Build
100+
# working-directory: ${{env.GITHUB_WORKSPACE}}
96101
# Add additional options to the MSBuild command line here (like platform or verbosity level).
97102
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
98-
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /verbosity:minimal
103+
# run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /verbosity:minimal
99104

100105
- name: Compress the artifact
101106
run: |

0 commit comments

Comments
 (0)