Skip to content

Commit e1387ff

Browse files
authored
chore: Fix release script (material-components#5611)
1 parent fe79de0 commit e1387ff

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
MDC_CURRENT_VERSION="v$(npm run version --silent)"
4242
# If empty then set `mdc_version_changed` variable to `true`
43-
[[ -z $(git tag -l "$MDC_CURRENT_VERSION") ]] && echo "::set-output name=mdc_version_changed::true
43+
[[ -z $(git tag -l "$MDC_CURRENT_VERSION") ]] && echo "::set-output name=mdc_version_changed::true"
4444
- name: Build packages
4545
if: steps.vars.outputs.mdc_version_changed == true
4646
run: |

lerna.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
},
77
"publish": {
88
"ignoreChanges": [
9-
"*.md"
9+
"*.md",
10+
"*.txt"
1011
]
1112
}
1213
},

0 commit comments

Comments
 (0)