Repository: incubator-ariatosca-website Updated Branches: refs/heads/master 406ad090a -> 7c9b68b28
Updating site build Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/commit/7c9b68b2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/tree/7c9b68b2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/diff/7c9b68b2 Branch: refs/heads/master Commit: 7c9b68b284926bef41d5e1c24f6ff9769a30be2c Parents: 406ad09 Author: arthur <[email protected]> Authored: Thu Jun 22 16:53:15 2017 +0300 Committer: arthur <[email protected]> Committed: Thu Jun 22 16:53:15 2017 +0300 ---------------------------------------------------------------------- _site/atom.xml | 2 +- _site/build_site.sh | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/7c9b68b2/_site/atom.xml ---------------------------------------------------------------------- diff --git a/_site/atom.xml b/_site/atom.xml index 1e02201..fab2994 100644 --- a/_site/atom.xml +++ b/_site/atom.xml @@ -1 +1 @@ -<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><generator uri="http://jekyllrb.com" version="3.1.6">Jekyll</generator><link href="/atom.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2017-06-22T16:30:35+03:00</updated><id>/</id><title>Apache ARIA TOSCA</title><subtitle>ARIA is an agile reference implementation of automation based on OASIS TOSCA Specification. It is a framework for implementing orchestration software and a command line tool to execute TOSCA based application blueprints.</subtitle></feed> +<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><generator uri="http://jekyllrb.com" version="3.1.6">Jekyll</generator><link href="/atom.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2017-06-22T16:52:46+03:00</updated><id>/</id><title>Apache ARIA TOSCA</title><subtitle>ARIA is an agile reference implementation of automation based on OASIS TOSCA Specification. It is a framework for implementing orchestration software and a command line tool to execute TOSCA based application blueprints.</subtitle></feed> http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/7c9b68b2/_site/build_site.sh ---------------------------------------------------------------------- diff --git a/_site/build_site.sh b/_site/build_site.sh new file mode 100755 index 0000000..70f2e86 --- /dev/null +++ b/_site/build_site.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +WORKDIR=/tmp/incubator-ariatosca-site +rm -rf $WORKDIR +mkdir -p $WORKDIR +bundle exec jekyll build --destination $WORKDIR $WORKDIR +git checkout asf-site +git clean -f -d +git pull origin asf-site +rm -rf * +cp -a $WORKDIR/* . +git add . +git commit -m "Automatic Site Publish by Buildbot" +git push origin asf-site
