2022-09-23 13:39:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-12-02 08:37:03 +00:00
|
|
|
function get-website-data() {
|
2022-12-02 09:04:09 +00:00
|
|
|
curl -H "Authorization: token $AUTHTOKEN" -o $SOURCEDIR/$1 $GITREPOURL
|
2022-12-02 08:37:03 +00:00
|
|
|
}
|
|
|
|
|
2022-12-09 08:50:13 +00:00
|
|
|
function get-hash-data() {
|
|
|
|
curl -s -H "Authorization: token $AUTHTOKEN" $GITCOMMITURL | jq '.sha'
|
2022-12-02 09:04:09 +00:00
|
|
|
}
|
|
|
|
|
2022-12-09 08:50:13 +00:00
|
|
|
function write-hash-data() {
|
|
|
|
echo $1 > $HASHFILEDIR/$2
|
2022-12-02 08:37:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function unzip-website-data() {
|
2022-12-02 09:04:09 +00:00
|
|
|
unzip $SOURCEDIR/$1 -d $BUILDDIR
|
2022-09-23 13:39:17 +00:00
|
|
|
}
|
|
|
|
|
2022-12-02 09:36:44 +00:00
|
|
|
function build-website() {
|
2024-02-22 09:34:24 +00:00
|
|
|
(cd $BUILDDIR; dir=$(ls); cd $dir; ./generate.sh;)
|
2022-09-23 13:39:17 +00:00
|
|
|
}
|
2022-09-30 15:54:26 +00:00
|
|
|
|
|
|
|
function move-website-files-to-target() {
|
2024-02-22 09:34:24 +00:00
|
|
|
(cd $BUILDDIR; dir=$(ls); cd $dir; rsync -ru --exclude-from "/etc/exclude.pattern" --delete target/html/* $WEBSITEROOT;)
|
2022-09-30 15:54:26 +00:00
|
|
|
}
|