We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8116d0e commit 0d063d6Copy full SHA for 0d063d6
2 files changed
.github/workflows/e2e-personal.yaml
@@ -1,4 +1,4 @@
1
-name: E2E Personal (push only)
+name: E2E Personal Account Testing (push only)
2
3
on:
4
push:
@@ -18,7 +18,7 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
21
- - name: Install deps
+ - name: Install Dependencies
22
run: |
23
dnf -y update
24
dnf -y group install development-tools
ci/e2e/run.sh
@@ -32,8 +32,8 @@ set +e
32
--resync \
33
--resync-auth \
34
--syncdir "$SYNC_ROOT" \
35
- > "$LOG_FILE" 2>&1
36
-rc=$?
+ 2>&1 | tee "$LOG_FILE"
+rc=${PIPESTATUS[0]}
37
set -e
38
39
if [ "$rc" -eq 0 ]; then
0 commit comments