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 4997608 commit 9c4e46eCopy full SHA for 9c4e46e
.github/workflows/build-artifacts.yml
@@ -46,7 +46,13 @@ jobs:
46
47
- name: Move artifacts
48
shell: pwsh
49
- run: Move-Item -Path TuneLab\bin\Release\net8.0\${{ matrix.runtime }}\publish -Destination workspace
+ working-directory: ${{github.workspace}}
50
+ run: Move-Item -Path "TuneLab\bin\Release\net8.0\${{ matrix.runtime }}\publish" -Destination "workspace\"
51
+
52
+ - name: Copy license to artifacts path
53
+ shell: pwsh
54
55
+ run: Copy-Item "LICENSE.txt" -Destination "workspace\"
56
57
- name: Generate artifact attestation - Windows
58
if: runner.os == 'Windows' && github.event_name != 'pull_request'
0 commit comments