sitoctt/.gitlab-ci.yml

29 lines
700 B
YAML
Raw Normal View History

image: alpine:latest
before_script:
- apk update
2022-07-01 17:53:36 +02:00
- apk add python3 py3-pip npm go git
2022-07-01 15:07:06 +02:00
- pip3 install requests lxml
2022-08-11 21:40:37 +02:00
- npm install -g pug-cli planktos
pages:
stage: deploy
script:
2022-07-01 17:53:36 +02:00
- git clone --depth 1 https://github.com/LukeEmmet/html2gmi
- cd html2gmi
- go get github.com/LukeEmmet/html2gmi
2022-07-01 18:11:56 +02:00
- echo "#!/bin/sh" > ./html2gmi
- echo "cd $PWD; go run ." >> ./html2gmi
2022-07-01 17:53:36 +02:00
- chmod +x ./html2gmi
- PATH=$PATH:$PWD
- cd ..
- git clone --depth 1 https://gitlab.com/octtspacc/staticoso
2022-08-18 00:04:54 +02:00
- ./Scripts/Deploy.GitLab.sh
- ./Scripts/Deploy.BitTorrent.sh
- ./Scripts/Deploy.Gemini.sh
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH