You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sh "curl -X POST --header \"Content-Type:application/edn\" --data-binary @org.erlide.site/target/repository/${archive} https://uploads.github.com/repos/${owner}/${repository}/releases/${release_id}/assets?access_token=${access_token}\\&name=${archive}"
209
+
210
+
// publish help to github.io
211
+
val dest ="org.erlide.help/target/erlide.github.io"
212
+
sh "rm -rf ${dest} && mkdir -p ${dest}"
213
+
sh "git clone --depth 1 [email protected]:erlide/erlide.github.io -b master ${dest}"
214
+
sh "cp -R org.erlide.help/articles/* ${dest}/articles/eclipse"
215
+
dir(dest) {
216
+
sh "git add . && git commit -a -m 'autoupdate eclipse docs (${vsn})' && git push origin master"
0 commit comments