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 2ae7905 commit e9d9b22Copy full SHA for e9d9b22
.github/workflows/build-executables.yml
@@ -43,6 +43,15 @@ jobs:
43
7z a -tzip XMLDiffAndPatch.zip XMLDiffAndPatch
44
shell: powershell
45
46
+ # Step 6: Upload Diff and Patch Archive as Artifact
47
+ - name: Upload Diff and Patch Archive as Artifact
48
+ uses: actions/upload-artifact@v4
49
+ with:
50
+ name: executables-archive
51
+ path: |
52
+ XMLDiffAndPatch.zip
53
+ env:
54
+ GITHUB_TOKEN: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
55
56
# Step 10: Scan with VirusTotal
57
-
@@ -54,4 +63,4 @@ jobs:
63
github_token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
64
request_rate: 4
65
files: |
- ${{ github.event_name == 'release' && '.exe$' || '*.exe' }}
66
+ ${{ github.event_name == 'release' && '.zip$' || '*.zip' }}
0 commit comments