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 7028355 commit e23b4caCopy full SHA for e23b4ca
.github/workflows/build-artifacts.yml
@@ -54,13 +54,13 @@ jobs:
54
run: mv TuneLab/bin/Release/net8.0/${{ matrix.runtime }}/publish workspace
55
56
- name: Generate artifact attestation - Windows
57
- if: runner.os == 'Windows'
+ if: runner.os == 'Windows' && github.event_name != 'pull_request'
58
uses: actions/attest-build-provenance@v1
59
with:
60
subject-path: '"workspace/*.dll","workspace/*.exe"'
61
62
- name: Generate artifact attestation - MacOS and Linux
63
- if: runner.os != 'Windows'
+ if: runner.os != 'Windows' && github.event_name != 'pull_request'
64
65
66
subject-path: '"workspace/*.dll","workspace/ExtensionInstaller","workspace/TuneLab"'
0 commit comments