We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d960717 commit ece385dCopy full SHA for ece385d
.drone.yml
@@ -110,6 +110,27 @@ pipeline:
110
when:
111
event: tag
112
113
+
114
+ publish-documentation:
115
+ image: quay.io/presslabs/kluster-toolbox
116
+ pull: true
117
+ environment:
118
+ - GH_USER=presslabs-bot
119
+ - [email protected]
120
+ - CODE_DIR=/code
121
+ commands:
122
+ - setup-github-credentials.sh
123
+ - git clone https://github.com/presslabs/code.git $CODE_DIR
124
+ - rm -rf $CODE_DIR/content/mysqloperator/*
125
+ - cp docs/* $CODE_DIR/content/mysqloperator/
126
+ - cd $CODE_DIR
127
+ - git add -A; git commit -m "Update MySQL Operator documentation"; git push origin master
128
+ secrets:
129
+ - GH_PASSWORD
130
+ when:
131
+ event: push
132
+ branch: master
133
134
#
135
# end to end testing
136
0 commit comments