summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authormbkma <[email protected]>2026-01-30 00:26:21 +0100
committermbkma <[email protected]>2026-01-30 00:26:21 +0100
commitfaa474e118ff44cfe07fbebe8fe241460bc43f60 (patch)
treef82265e226154f35f2da3b0ce88189bafcbf1324 /.github/workflows
parentabaa8b92b7ef35c381224db92f7acde4ee61b3ba (diff)
downloadmate-themes-gh-actions.tar.bz2
mate-themes-gh-actions.tar.xz
ci: add set -eo pipefail to workflow scriptsgh-actions
Diffstat (limited to '.github/workflows')
-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 05ed8dca..4ddb420b 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 cfdd78e0..a07a603b 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 3e7bdf6f..2d190af1 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 e12c6342..25827bbb 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}"