Skip to content

Commit 0da0ac5

Browse files
authored
Update make.yml
1 parent edba511 commit 0da0ac5

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/make.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
13-
timeout-minutes: 10
13+
timeout-minutes: 15
1414

1515
steps:
1616
- name: 🧭 Checkout repository
@@ -37,14 +37,15 @@ jobs:
3737
exit 1
3838
fi
3939
40-
- name: ✅ Force success signal
41-
if: always()
40+
- name: 🧹 Clean temporary files (optional)
4241
run: |
43-
echo "🎯 Workflow finished, forcing success signal."
44-
echo "result=success" >> $GITHUB_OUTPUT
42+
echo "🧽 Cleaning up temporary build files..."
43+
rm -rf logs/tmp 2>/dev/null || true
4544
46-
- name: 🟢 Mark workflow as passed
47-
if: ${{ success() }}
45+
- name: ✅ Finalize and mark success
4846
run: |
49-
echo " All steps passed — setting final status to success."
47+
echo "🎯 All steps executed successfully!"
5048
exit 0
49+
50+
# This ensures GitHub marks as green even if warnings exist
51+
continue-on-error: false

0 commit comments

Comments
 (0)