2022-05-17 13:00:20 +02:00
|
|
|
image: alpine:latest
|
|
|
|
|
2022-08-29 15:41:44 +02:00
|
|
|
before_script: |
|
|
|
|
apk update
|
|
|
|
apk add python3 py3-pip npm go git
|
|
|
|
pip3 install requests lxml
|
|
|
|
npm install -g pug-cli
|
2022-05-17 13:00:20 +02:00
|
|
|
|
|
|
|
pages:
|
|
|
|
stage: deploy
|
2022-08-29 15:41:44 +02:00
|
|
|
script: |
|
|
|
|
git clone --depth 1 https://github.com/LukeEmmet/html2gmi
|
|
|
|
cd html2gmi
|
|
|
|
go get github.com/LukeEmmet/html2gmi
|
|
|
|
echo "#!/bin/sh" > ./html2gmi
|
|
|
|
echo "cd $PWD; go run ." >> ./html2gmi
|
|
|
|
chmod +x ./html2gmi
|
|
|
|
PATH=$PATH:$PWD
|
|
|
|
cd ..
|
|
|
|
git clone --depth 1 https://gitlab.com/octtspacc/staticoso
|
|
|
|
./Scripts/Deploy.GitLab.sh
|
|
|
|
./Scripts/Deploy.Gemini.sh
|
2022-05-17 13:00:20 +02:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- public
|
|
|
|
rules:
|
|
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|