Merge pull request #3075 from cmderdev/copilot/fix-double-zip-problem

fix: resolve double-zip problem with github artifact upload
This commit is contained in:
David Refoua
2026-04-12 00:10:28 +03:30
committed by GitHub

View File

@@ -101,6 +101,7 @@ jobs:
with:
path: build/cmder.zip
name: cmder.zip
archive: false
if-no-files-found: error
- name: Upload artifact (cmder.7z)
@@ -108,18 +109,21 @@ jobs:
with:
path: build/cmder.7z
name: cmder.7z
archive: false
- name: Upload artifact (cmder_mini.zip)
uses: actions/upload-artifact@v7
with:
path: build/cmder_mini.zip
name: cmder_mini.zip
archive: false
- name: Upload artifact (hashes.txt)
uses: actions/upload-artifact@v7
with:
path: build/hashes.txt
name: hashes.txt
archive: false
- name: Summary - Artifacts uploaded
if: success()