change step to general dev step

This commit is contained in:
Vri 🌈 2023-04-05 22:17:53 +02:00
parent 826e1b54d8
commit 3ce65bd78e
Signed by: vrifox
GPG key ID: D40098E5B60B2197

View file

@ -5,7 +5,7 @@ pipeline:
- pacman -Syu --noconfirm hugo git - pacman -Syu --noconfirm hugo git
- hugo --destination /woodpecker/build/ --minify --cleanDestinationDir - hugo --destination /woodpecker/build/ --minify --cleanDestinationDir
upload-main: upload-stable:
image: archlinux image: archlinux
commands: commands:
- pacman -Syu --noconfirm openssh rsync - pacman -Syu --noconfirm openssh rsync
@ -18,7 +18,7 @@ pipeline:
when: when:
branch: main branch: main
upload-cicd: upload-dev:
image: archlinux image: archlinux
commands: commands:
- pacman -Syu --noconfirm openssh rsync - pacman -Syu --noconfirm openssh rsync
@ -26,9 +26,7 @@ pipeline:
- echo "$SSH_KEY" > /root/.ssh/id_ed25519 - echo "$SSH_KEY" > /root/.ssh/id_ed25519
- chmod 700 /root/.ssh/id_ed25519 - chmod 700 /root/.ssh/id_ed25519
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > /root/.ssh/config - 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/ caddy@$SSH_HOST:/var/lib/caddy/woodpecker/vrifox.cc-cicd/ --mkpath --checksum - rsync -rv --delete -e "ssh -p $SSH_PORT -i /root/.ssh/id_ed25519" /woodpecker/build/ caddy@$SSH_HOST:/var/lib/caddy/woodpecker/vrifox.cc-dev/CI_COMMIT_BRANCH/$CI_COMMIT_SHA/ --mkpath --checksum
secrets: [ ssh_key, ssh_port, ssh_host ] secrets: [ ssh_key, ssh_port, ssh_host ]
when: branch:
branch: cicd exclude: [ main ]
branches: [ main, cicd ]