This commit is contained in:
parent
22e7d68416
commit
097ab26112
1 changed files with 21 additions and 5 deletions
|
@ -3,17 +3,33 @@ pipeline:
|
|||
image: archlinux
|
||||
commands:
|
||||
- pacman -Syu --noconfirm hugo git
|
||||
- hugo --destination /woodpecker/build/vrifox.cc/ --minify --cleanDestinationDir
|
||||
- hugo --destination /woodpecker/build/ --minify --cleanDestinationDir
|
||||
|
||||
upload:
|
||||
prepare-upload:
|
||||
image: archlinux
|
||||
commands:
|
||||
- pacman -Syu --noconfirm openssh rsync
|
||||
- mkdir -p /root/.ssh
|
||||
- echo "$SSH_KEY" > /root/.ssh/id_ed25519
|
||||
- chmod 700 /root/.ssh/id_ed25519
|
||||
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config
|
||||
- rsync -rv --delete -e "ssh -p $SSH_PORT -i /root/.ssh/id_ed25519" /woodpecker/build/ woodpecker@$SSH_HOST:/home/woodpecker/build/ --checksum
|
||||
secrets: [ ssh_key, ssh_port, ssh_host ]
|
||||
secrets: [ ssh_key ]
|
||||
|
||||
upload-main:
|
||||
image: archlinux
|
||||
commands:
|
||||
- pacman -Syu --noconfirm openssh rsync
|
||||
- rsync -rv --delete -e "ssh -p $SSH_PORT -i /root/.ssh/id_ed25519" /woodpecker/build/ woodpecker@$SSH_HOST:/home/woodpecker/build/vrifox.cc/ --checksum
|
||||
secrets: [ ssh_port, ssh_host ]
|
||||
when:
|
||||
branch: main
|
||||
|
||||
upload-cicd:
|
||||
image: archlinux
|
||||
commands:
|
||||
- pacman -Syu --noconfirm openssh rsync
|
||||
- rsync -rv --delete -e "ssh -p $SSH_PORT -i /root/.ssh/id_ed25519" /woodpecker/build/ woodpecker@$SSH_HOST:/home/woodpecker/build/vrifox.cc-cicd/ --checksum
|
||||
secrets: [ ssh_port, ssh_host ]
|
||||
when:
|
||||
branch: cicd
|
||||
|
||||
branches: [ main, cicd ]
|
||||
|
|
Loading…
Reference in a new issue