Skip to content

Commit

Permalink
ci: Fix branch name in dist check (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisonkun committed Oct 17, 2022
1 parent 570204e commit 0a457e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
set -eux
if [ $(git diff origin/master --name-only -- 'dist/**' | wc -l) -gt 0 ]
if [ $(git diff origin/main --name-only -- 'dist/**' | wc -l) -gt 0 ]
then
echo "Please do not update 'dist/'. CI will update it automatically on merge."
exit 1
Expand Down

0 comments on commit 0a457e2

Please sign in to comment.