c4k-website/infrastructure/build/image/resources/functions.sh

30 lines
716 B
Bash
Raw Normal View History

#!/bin/bash
function generate-netrc-file() {
2024-03-11 13:41:15 +00:00
echo "machine $GITHOST password $AUTHTOKEN" > ~/.netrc
}
function get-website-data() {
2024-03-11 13:41:15 +00:00
curl -H "Authorization: token $AUTHTOKEN" -o $SOURCEDIR/$1 $GITREPOURL
}
function get-hash-data() {
2024-03-11 13:41:15 +00:00
curl -s -H "Authorization: token $AUTHTOKEN" $GITCOMMITURL | jq '.sha'
2022-12-02 09:04:09 +00:00
}
function write-hash-data() {
2024-03-11 13:41:15 +00:00
echo $1 > $HASHFILEDIR/$2
}
function unzip-website-data() {
2024-03-11 13:41:15 +00:00
unzip $SOURCEDIR/$1 -d $BUILDDIR
}
function build-website() {
2024-03-15 10:01:35 +00:00
(cd $BUILDDIR; dir=$(ls); cd $dir; bash generate.sh;)
}
2022-09-30 15:54:26 +00:00
function move-website-files-to-target() {
2024-03-15 09:03:36 +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
}