summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormbkma <[email protected]>2026-01-30 00:26:19 +0100
committermbkma <[email protected]>2026-01-30 00:26:19 +0100
commit6bcca941cf73a68eefabfd1baedf331cfa244a58 (patch)
treed25b5e10609fb1cfb5ad512518fc377060f198f1
parent84881b7d3c03b92ae289c101a679e51e2f600b48 (diff)
downloadengrampa-gh-actions.tar.bz2
engrampa-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 dcd471f..d558640 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 a345f6e..b2e4f64 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 e9a94a1..6889e8a 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 1cc1e92..80d0fef 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}"