Skip to content
This repository was archived by the owner on Oct 25, 2025. It is now read-only.

Commit 466ff07

Browse files
author
Claude Code Plugin Developer
committed
fix: improve tar command robustness in release workflow
1 parent 7adf4af commit 466ff07

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.claude/settings.local.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"permissions": {
33
"allow": [
4-
"Bash(git init)"
4+
"Bash(git init)",
5+
"Bash(git add -A)",
6+
"Bash(git commit -m \"fix: improve tar command robustness in release workflow\")",
7+
"Bash(git push)"
58
],
69
"deny": [],
710
"ask": []

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ jobs:
9696
--exclude='tests' \
9797
--exclude='*.log' \
9898
--exclude='/tmp' \
99-
.
99+
--warning=no-file-changed \
100+
. || [ $? -eq 1 ]
100101
101102
- name: Upload release archive
102103
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)