This commit is contained in:
parent
dd230c2fa1
commit
a10fb7de10
1 changed files with 27 additions and 0 deletions
27
.woodpecker.yml
Normal file
27
.woodpecker.yml
Normal 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
|
Loading…
Reference in a new issue