From e86a3fec55589eb1da839c1936569b19a9ff6713 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 15 Nov 2023 14:19:57 -0800 Subject: [PATCH] ci: fix release workflow --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e74c89..f8e4705 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,9 @@ jobs: cmake -E copy build/x64/RelWithDebInfo/rcedit.exe dist/rcedit-x64.exe cmake -E copy build/Win32/RelWithDebInfo/rcedit.exe dist/rcedit-x86.exe - name: Print help + shell: bash run: | + set -eo pipefail dist/rcedit-x86.exe -h dist/rcedit-x64.exe -h - name: Upload artifacts @@ -66,6 +68,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Stamp version if: steps.get-next-version.outputs.new-release-published == 'true' + shell: bash run: | set -eo pipefail dist/rcedit-x64.exe dist/rcedit-x86.exe --set-product-version $VERSION --set-file-version $VERSION