fediparty/.woodpecker.yml

33 lines
1.1 KiB
YAML
Raw Normal View History

2022-01-19 17:23:21 +00:00
pipeline:
2022-01-19 17:46:12 +00:00
# Build step: generates the files for Hexo site
build:
image: node:12.22.1
commands:
- npm install gulp -g
- npm install hexo-cli -g
- test -e package.json && npm install
# TODO: figure out why Gulp fails with: Local gulp not found in /woodpecker/src/codeberg.org/fediverse/fediparty/themes/starter
- gulp build --cwd ./themes/starter
- hexo generate
- find -maxdepth 1 ! -name .git ! -name .domains ! -name public ! -name . -exec rm -rf {} \;
# This only copies non-hidden files; those whose names start with period WOULD NOT be copied
- mv public/* .
- rm -rf public
when:
2022-01-19 17:49:35 +00:00
branch:
include: [ main ]
event: [push, deployment]
2022-01-19 17:23:21 +00:00
2022-01-19 17:46:12 +00:00
publish:
image: alpine
commands:
# configure git
- git checkout -b pages
- git config --global user.email "nonexistent@example.com"
- git config --global user.name "Codeberg CI"
# deploy changes
- git add -A
- git commit -m "Woodpecker build ${CI_COMMIT_SHA}"
- git push --force origin pages