Update '.woodpecker.yml'
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
millironx 2023-02-20 15:07:17 +00:00
parent be808573cc
commit 15748f56cb

View file

@ -18,20 +18,24 @@ pipeline:
docs: docs:
group: ci group: ci
image: julia:1-alpine3.17 image: julia:${JULIA_VERSION}
when: when:
event: push event: push
branch: master branch: master
matrix:
JULIA_VERSION: "1"
secrets: secrets:
- DOCS_REMOTE_USER - DOCS_REMOTE_USER
- DOCS_REMOTE_SERVER - DOCS_REMOTE_SERVER
- DOCS_REMOTE_DIR - DOCS_REMOTE_DIR
- DOCS_REMOTE_KEY
- DOCS_KEY - DOCS_KEY
- DOCS_PUBKEY - DOCS_PUBKEY
commands: commands:
- apk add git openssh-client rsync - apk add git openssh-client rsync
- mkdir -p $HOME/.ssh - mkdir -p $HOME/.ssh
- echo "$${DOCS_KEY}" >> $HOME/.ssh/id_rsa - echo "$${DOCS_KEY}" >> $HOME/.ssh/id_rsa
- echo "$${DOCS_REMOTE_KEY}}" >> $HOME/.ssh/known_hosts
- chmod 0600 $HOME/.ssh/id_rsa - chmod 0600 $HOME/.ssh/id_rsa
- git config --global user.email "woodpecker@millironx.com" - git config --global user.email "woodpecker@millironx.com"
- git config --global user.name "woodpecker-bot" - git config --global user.name "woodpecker-bot"