Skip to content

Commit be3d66d

Browse files
authored
Merge pull request #3075 from cmderdev/copilot/fix-double-zip-problem
fix: resolve double-zip problem with github artifact upload
2 parents 7cfa69f + 35c1cd6 commit be3d66d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,25 +101,29 @@ jobs:
101101
with:
102102
path: build/cmder.zip
103103
name: cmder.zip
104+
archive: false
104105
if-no-files-found: error
105106

106107
- name: Upload artifact (cmder.7z)
107108
uses: actions/upload-artifact@v7
108109
with:
109110
path: build/cmder.7z
110111
name: cmder.7z
112+
archive: false
111113

112114
- name: Upload artifact (cmder_mini.zip)
113115
uses: actions/upload-artifact@v7
114116
with:
115117
path: build/cmder_mini.zip
116118
name: cmder_mini.zip
119+
archive: false
117120

118121
- name: Upload artifact (hashes.txt)
119122
uses: actions/upload-artifact@v7
120123
with:
121124
path: build/hashes.txt
122125
name: hashes.txt
126+
archive: false
123127

124128
- name: Summary - Artifacts uploaded
125129
if: success()

0 commit comments

Comments
 (0)