Skip to content

Commit 231d4e8

Browse files
authored
Merge pull request #41 from teaxyz/extend-blacklist
blacklist more (unnecessary) files from codesigning
2 parents 061faff + b2ab612 commit 231d4e8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

actions/codesign/action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ runs:
5656
-not -name '*.pyc' \
5757
-not -name '*.txt' \
5858
-not -name '*.h' | \
59+
-not -name '*.c' | \
60+
-not -name '*.s' | \
61+
-not -name '*.def' | \
62+
-not -name '*.zig' | \
5963
/usr/bin/sed -e 's/ /\\ /g' >> $GITHUB_OUTPUT
6064
echo "EOF" >> $GITHUB_OUTPUT
6165
@@ -69,6 +73,10 @@ runs:
6973
-not -name '*.pyc' \
7074
-not -name '*.txt' \
7175
-not -name '*.h' \
76+
-not -name '*.c' | \
77+
-not -name '*.s' | \
78+
-not -name '*.def' | \
79+
-not -name '*.zig' | \
7280
-not -name tea | \
7381
/usr/bin/sed -e 's/ /\\ /g' >> $GITHUB_OUTPUT
7482
echo "EOF" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)