summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormbkma <[email protected]>2026-01-30 00:26:20 +0100
committermbkma <[email protected]>2026-01-30 00:26:20 +0100
commitccab54d8834a2284c9bd382a3fe7c11bc73733f7 (patch)
treee93deee6a18fcfd3dc02bd28e0ec4f37c29568bc
parent90a41e39a58f7093dd9c41b5a9083b5d567e05a4 (diff)
downloadmate-indicator-applet-gh-actions.tar.bz2
mate-indicator-applet-gh-actions.tar.xz
ci: add set -eo pipefail to workflow scriptsgh-actions
-rwxr-xr-x.github/workflows/archlinux.sh2
-rwxr-xr-x.github/workflows/debian.sh2
-rwxr-xr-x.github/workflows/fedora.sh2
-rwxr-xr-x.github/workflows/ubuntu.sh2
4 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/archlinux.sh b/.github/workflows/archlinux.sh
index 61f2121..af90682 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 5e1309e..b0dce59 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 acac615..eeba6d7 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 5936efc..d41df69 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}"