diff options
| author | mbkma <[email protected]> | 2026-01-30 00:26:19 +0100 |
|---|---|---|
| committer | mbkma <[email protected]> | 2026-01-30 00:26:19 +0100 |
| commit | 872342869512ab355166893ac2c19ae9da2e5ad3 (patch) | |
| tree | 4feb986f1ed1f0ed7db125712d9cfb78f2ef9c8e | |
| parent | 665c3969ec3f2437dcf63cd327f8122fdd6cc98b (diff) | |
| download | mate-applets-gh-actions.tar.bz2 mate-applets-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 9d86a3e9..f9e3cfab 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 bceedce6..fe0f711e 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 1daef779..bc77b083 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 bbcda490..291ab39b 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}" |
