diff options
| author | mbkma <[email protected]> | 2026-01-30 00:26:21 +0100 |
|---|---|---|
| committer | mbkma <[email protected]> | 2026-01-30 00:26:21 +0100 |
| commit | b66c8b1e4590c567467bc3d0e4c4038a28867691 (patch) | |
| tree | 0b147df5cefa39138a06f50c8b59f274b904c090 | |
| parent | 1fedbe5f48c701289033ec699ab41dc66d2031fb (diff) | |
| download | mate-utils-gh-actions.tar.bz2 mate-utils-gh-actions.tar.xz | |
ci: add set -eo pipefail to workflow scriptsgh-actions
| -rwxr-xr-x | .github/workflows/archlinux.sh | 2 | ||||
| -rwxr-xr-x | .github/workflows/debian.sh | 2 | ||||
| -rwxr-xr-x | .github/workflows/fedora.sh | 2 | ||||
| -rwxr-xr-x | .github/workflows/ubuntu.sh | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/archlinux.sh b/.github/workflows/archlinux.sh index 55edc125..ac20758a 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 b7b93469..7e431930 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 816295db..c8892639 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 9ae65dfa..95f5e7d7 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}" |
