Skip to content

Commit 9c4e31d

Browse files
committed
Run clean before releasing
1 parent 0f85cf6 commit 9c4e31d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

scripts/release-client.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ set -euo pipefail
44

55
version=$(cat vscode-client/package.json | jq -r .version)
66

7-
yarn && yarn run check:bail
7+
yarn run clean
8+
yarn install
9+
yarn run check:bail
810

911
cd vscode-client && vsce publish ${version}

scripts/release-server.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ set -euo pipefail
55
version=$(cat server/package.json | jq -r .version)
66
tag="server-${version}"
77

8-
yarn && yarn run check:bail
8+
yarn run clean
9+
yarn install
10+
yarn run check:bail
911

1012
git tag -a "${tag}" -m "Release ${version} of the bash-language-server package"
1113
git push origin "${tag}"

0 commit comments

Comments
 (0)