Woodpecker
All checks were successful
continuous-integration/drone the build was successful

This commit is contained in:
Cat /dev/Nulo 2021-09-20 14:21:09 -03:00
parent dd230c2fa1
commit a10fb7de10

27
.woodpecker.yml Normal file
View file

@ -0,0 +1,27 @@
pipeline:
build:
image: registry.nulo.in/sutty/haini.sh:root
commands:
- rm -f assets/js/*
- make yarn hainish="sh -c"
- make webpack hainish="sh -c"
- mkdir ~/.ssh/
- eval $(ssh-agent -s)
- echo "$${GIT_BASE64_SSH_KEY}" | base64 -d | ssh-add -
- echo [nulo.in]:420 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHgHIbf5/jkeyLMndnWlEO12DPj41YPqkmz+aIreVOsP >> ~/.ssh/known_hosts
- git config user.name Woodpecker
- git config user.email ci@nulo.in
- git remote add nulo ssh://_gitea@nulo.in:420/Sutty/sutty-base-jekyll-theme.git
- git diff-index --quiet HEAD --ignore-submodules || ( git add assets/js/pack* && git commit assets/js/ _data/assets.json -m "[skip ci] Recompilar JS" && git push -u nulo HEAD:${DRONE_BRANCH} )
secrets:
- git_base64_ssh_key
when:
path:
include:
- _packs/*
- package.json
- yarn.lock
- webpack.*.js
- .woodpecker.yml