Skip to content

Commit

Permalink
Fix error caused by not using ()
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkFi committed Oct 14, 2024
1 parent d57be65 commit 1b66679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# 5. 构建项目
- name: Build project
run: cargo make build-ci || echo "Build failed" && exit 1
run: cargo make build-ci || ( echo "Build failed" && exit 1 )

# 6. 列出 static 目录内容(用于调试)
- name: List static directory
Expand Down

0 comments on commit 1b66679

Please sign in to comment.