Skip to content

Commit bdce6e5

Browse files
committed
Update docs during release process
1 parent 893cab3 commit bdce6e5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/do_release.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash -e
22

3+
#Build the docs first
4+
cd $(dirname $0)/../
5+
tfpluginwebsite
6+
DIFFOUTPUT=`git diff docs`
7+
if [ -n "$DIFFOUTPUT" ];then
8+
git commit -m 'Update docs before release' docs
9+
git push
10+
fi
11+
312
OSs=("darwin" "linux" "windows")
413
ARCHs=("386" "amd64")
514

0 commit comments

Comments
 (0)