From 4d81b0000df94fe42477ceae755ea256595cba12 Mon Sep 17 00:00:00 2001 From: "Sergey G. Brester" Date: Wed, 26 Feb 2025 20:13:44 +0100 Subject: [PATCH] GHA/windows-artifacts.yml: don't ignore the error if build-package batch failed --- .github/workflows/windows-artifacts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows-artifacts.yml b/.github/workflows/windows-artifacts.yml index 0334f1446..9b74969d3 100644 --- a/.github/workflows/windows-artifacts.yml +++ b/.github/workflows/windows-artifacts.yml @@ -46,7 +46,7 @@ jobs: - name: Create artifacts run: | - ./lib/dll/example/build_package.bat + ./lib/dll/example/build_package.bat || exit 1 mv bin/ zstd-${{ github.ref_name }}-${{matrix.ziparch}}/ 7z a -tzip -mx9 zstd-${{ github.ref_name }}-${{matrix.ziparch}}.zip zstd-${{ github.ref_name }}-${{matrix.ziparch}}/ cd .. -- 2.47.2