TinyLifeWeb/.woodpecker/web.yml

30 lines
732 B
YAML
Raw Normal View History

2023-08-12 17:46:43 +02:00
when:
path: "web/**"
2023-07-20 14:30:45 +02:00
steps:
2023-08-12 22:17:56 +02:00
build-web:
2024-01-03 11:53:25 +01:00
image: ruby:3.2.2
2023-07-20 14:30:45 +02:00
commands:
- cd web && bundle && bundle exec jekyll build
2023-08-12 22:17:56 +02:00
preview-web:
image: woodpeckerci/plugin-surge-preview:1.3.0
when:
event: [pull_request, pull_request_closed]
settings:
path: web/_site
surge_token:
from_secret: surge_token
forge_type: github
forge_url: https://github.com
forge_repo_token:
from_secret: github_token
2023-08-12 22:17:56 +02:00
deploy-web:
2023-07-20 14:30:45 +02:00
image: debian:latest
when:
- event: [push, manual]
branch: main
commands:
- rm -rfv /var/www/tinylifegame/*
- cp -rv web/_site/. /var/www/tinylifegame
volumes:
- /var/www/tinylifegame:/var/www/tinylifegame