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 | 0f7b00f89b171d1fb05cb0085fa99e3bbc9686d1 (patch) | |
| tree | 4b91bd311f77b0d5199c49fdcd8cd1ef5b9f04c2 | |
| parent | 56e649c09bd8a5968bc3a6706f0ab80e971202b5 (diff) | |
| download | python-caja-gh-actions.tar.bz2 python-caja-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 84e63fd..72dbd40 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 6c4dba6..ab5f506 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 edcc9af..10c4f64 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 08f0af7..534c4ef 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}" |
