From a5f9dbb4393dbaffad96bf3a7cc4308fa0a8ff20 Mon Sep 17 00:00:00 2001 From: mbkma Date: Fri, 30 Jan 2026 00:26:21 +0100 Subject: ci: add set -eo pipefail to workflow scripts --- .github/workflows/archlinux.sh | 2 ++ .github/workflows/debian.sh | 2 ++ .github/workflows/fedora.sh | 2 ++ .github/workflows/ubuntu.sh | 2 ++ 4 files changed, 8 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/archlinux.sh b/.github/workflows/archlinux.sh index b23bdef..2a2e7cd 100755 --- a/.github/workflows/archlinux.sh +++ b/.github/workflows/archlinux.sh @@ -1,5 +1,7 @@ #!/usr/bin/bash +set -eo pipefail + # Use grouped output messages infobegin() { echo "::group::${1}" diff --git a/.github/workflows/debian.sh b/.github/workflows/debian.sh index 7127658..a148369 100755 --- a/.github/workflows/debian.sh +++ b/.github/workflows/debian.sh @@ -1,5 +1,7 @@ #!/usr/bin/bash +set -eo pipefail + # Use grouped output messages infobegin() { echo "::group::${1}" diff --git a/.github/workflows/fedora.sh b/.github/workflows/fedora.sh index d5c959c..79f0902 100755 --- a/.github/workflows/fedora.sh +++ b/.github/workflows/fedora.sh @@ -1,5 +1,7 @@ #!/usr/bin/bash +set -eo pipefail + # Use grouped output messages infobegin() { echo "::group::${1}" diff --git a/.github/workflows/ubuntu.sh b/.github/workflows/ubuntu.sh index 74c5a40..77f3189 100755 --- a/.github/workflows/ubuntu.sh +++ b/.github/workflows/ubuntu.sh @@ -1,5 +1,7 @@ #!/usr/bin/bash +set -eo pipefail + # Use grouped output messages infobegin() { echo "::group::${1}" -- cgit v1.2.1