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 c2ee999 commit 777aca9Copy full SHA for 777aca9
.github/workflows/make.yml
@@ -1,4 +1,5 @@
1
name: Build & Test (C/ASM NeuroHTTP)
2
+run-name: Build and Test NeuroHTTP on ${{ github.ref_name }}
3
4
on:
5
push:
@@ -36,8 +37,18 @@ jobs:
36
37
exit 1
38
fi
39
- - name: ✅ Force clean exit
40
+ - name: ✅ Mark workflow success
41
+ if: ${{ success() }}
42
run: |
- echo "🎯 Forcing clean exit to ensure GitHub Actions marks this workflow as passed."
- sleep 1
43
- exit 0
+ echo "🎯 All steps completed successfully!"
44
+ echo "BUILD_STATUS=success" >> $GITHUB_ENV
45
+
46
+ - name: 🚀 Finalize job
47
+ run: |
48
+ if [ "$BUILD_STATUS" = "success" ]; then
49
+ echo "✅ Workflow finished cleanly — marking as passed."
50
+ exit 0
51
+ else
52
+ echo "❌ Something went wrong, marking as failed."
53
+ exit 1
54
+ fi
0 commit comments