From 489078763d8fdfa4c00c8c87b28caafe042e6ebd Mon Sep 17 00:00:00 2001 From: David Refoua Date: Sat, 15 Oct 2022 02:30:45 +0330 Subject: [PATCH] switch to upload individual files --- .github/workflows/build.yml | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f63c10..7232656 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,8 +46,27 @@ jobs: working-directory: scripts run: .\pack.ps1 -verbose - - name: Upload artifacts + - name: Upload artifact (cmder.zip) uses: actions/upload-artifact@v3 with: - path: build + path: build/cmder.zip + name: cmder.zip if-no-files-found: error + + - name: Upload artifact (cmder.7z) + uses: actions/upload-artifact@v3 + with: + path: build/cmder.7z + name: cmder.7z + + - name: Upload artifact (cmder_mini.zip) + uses: actions/upload-artifact@v3 + with: + path: build/cmder_mini.zip + name: cmder_mini.zip + + - name: Upload artifact (hashes.txt) + uses: actions/upload-artifact@v3 + with: + path: build/hashes.txt + name: hashes.txt