adding auto deploy for neocities
This commit is contained in:
parent
8917e87393
commit
1101beac23
@ -1,4 +1,12 @@
|
|||||||
image: shockrah/website:1.2
|
image: shockrah/website:1.3
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- build
|
||||||
|
- deploy
|
||||||
|
|
||||||
|
variables:
|
||||||
|
SHOPTS: "-o StrictHostKeyChecking=no"
|
||||||
|
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- eval $(ssh-agent -s)
|
- eval $(ssh-agent -s)
|
||||||
@ -6,9 +14,30 @@ before_script:
|
|||||||
- mkdir -p ~/.ssh/
|
- mkdir -p ~/.ssh/
|
||||||
- chmod 700 ~/.ssh/
|
- chmod 700 ~/.ssh/
|
||||||
|
|
||||||
deploy:
|
build-site:
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- bash ./build.sh
|
bash ./build.sh
|
||||||
- ssh -o StrictHostKeyChecking=no root@shockrah.xyz "rm -rf /var/www/website"
|
|
||||||
- scp -o StrictHostKeyChecking=no -r .mirror root@shockrah.xyz:/var/www/website/
|
deploy-vps:
|
||||||
|
stage: deploy
|
||||||
|
|
||||||
|
script:
|
||||||
|
- ssh $SHOPTS root@shockrah.xyz "rm -rf /var/www/website"
|
||||||
|
- scp $SHOPTS -r .mirror root@shockrah.xyz:/var/www/website/
|
||||||
|
|
||||||
|
deploy-neocities:
|
||||||
|
stage: deploy
|
||||||
|
|
||||||
|
script:
|
||||||
|
# First the html
|
||||||
|
- bash upload.sh -h
|
||||||
|
# then we do the media files
|
||||||
|
- > for file in $(find media);do
|
||||||
|
if [ -f $file ];then
|
||||||
|
bash upload.sh -m $file
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user