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