diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/publish-release-docs.in | 6 | ||||
| -rw-r--r-- | scripts/publish-release.in | 8 | ||||
| -rwxr-xr-x | scripts/publish-www | 4 |
3 files changed, 18 insertions, 0 deletions
diff --git a/scripts/publish-release-docs.in b/scripts/publish-release-docs.in new file mode 100644 index 0000000..1da54b2 --- /dev/null +++ b/scripts/publish-release-docs.in @@ -0,0 +1,6 @@ +#!/bin/sh +set -e + +make +make -C doc manual-rebuild +scp -r doc/manual peter@pmikkelsen.com:/var/www/htdocs/aplwc.org/v@PACKAGE_VERSION@/ diff --git a/scripts/publish-release.in b/scripts/publish-release.in new file mode 100644 index 0000000..28d1aea --- /dev/null +++ b/scripts/publish-release.in @@ -0,0 +1,8 @@ +#!/bin/sh +set -e + +make distcheck +hut git artifact upload aplwc-@PACKAGE_VERSION@.tar.* + +sh ./scripts/publish-release-docs +sh ./scripts/publish-www diff --git a/scripts/publish-www b/scripts/publish-www new file mode 100755 index 0000000..c395f9f --- /dev/null +++ b/scripts/publish-www @@ -0,0 +1,4 @@ +#!/bin/sh +set -e + +scp www/*.html www/*.css peter@pmikkelsen.com:/var/www/htdocs/aplwc.org/ |