You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
454 B
YAML
23 lines
454 B
YAML
when:
|
|
- event: push
|
|
branch: main
|
|
|
|
|
|
steps:
|
|
- name: build
|
|
image: git.st1t.ru/thest1tch/mkdocs-material:latest
|
|
commands:
|
|
- mkdocs build --clean
|
|
- ls -l site/
|
|
- cp -r site/ /site
|
|
- chown 1000:1000 /site
|
|
- chmod -R 777 /site
|
|
|
|
- name: deploy
|
|
image: alpine:latest
|
|
volumes:
|
|
- /opt/appdata/nginx/st1t.ru/site:/site
|
|
commands:
|
|
- cp -r site/* /site/
|
|
- echo "Deployment complete."
|
|
|