Skip to content

Commit e9d9b22

Browse files
committed
ci: add step to upload Diff and Patch archive as artifact
1 parent 2ae7905 commit e9d9b22

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build-executables.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ jobs:
4343
7z a -tzip XMLDiffAndPatch.zip XMLDiffAndPatch
4444
shell: powershell
4545

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 }}
4655

4756
# Step 10: Scan with VirusTotal
4857
-
@@ -54,4 +63,4 @@ jobs:
5463
github_token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
5564
request_rate: 4
5665
files: |
57-
${{ github.event_name == 'release' && '.exe$' || '*.exe' }}
66+
${{ github.event_name == 'release' && '.zip$' || '*.zip' }}

0 commit comments

Comments
 (0)