From: Sergey G. Brester Date: Wed, 26 Feb 2025 19:13:44 +0000 (+0100) Subject: GHA/windows-artifacts.yml: don't ignore the error if build-package batch failed X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4320%2Fhead;p=thirdparty%2Fzstd.git GHA/windows-artifacts.yml: don't ignore the error if build-package batch failed --- 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 ..