Skip to content

Commit 544722d

Browse files
committed
ci: 移除自动更新检查的哈希比较逻辑
1 parent d9b07df commit 544722d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/auto-update.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
cd /
6363
rm -rf /tmp/npm-check
6464
65-
if [ "$CURRENT_HASH" = "$NPM_HASH" ] && [ -n "$NPM_HASH" ]; then
66-
echo "No update needed, contentHash is the same"
67-
echo "skip=true" >> $GITHUB_OUTPUT
68-
else
69-
echo "Update needed, contentHash is different"
70-
echo "skip=false" >> $GITHUB_OUTPUT
71-
fi
65+
# if [ "$CURRENT_HASH" = "$NPM_HASH" ] && [ -n "$NPM_HASH" ]; then
66+
# echo "No update needed, contentHash is the same"
67+
# echo "skip=true" >> $GITHUB_OUTPUT
68+
# else
69+
# echo "Update needed, contentHash is different"
70+
# echo "skip=false" >> $GITHUB_OUTPUT
71+
# fi
7272
7373
- name: Build project
7474
if: steps.check-update.outputs.skip != 'true'

0 commit comments

Comments
 (0)