46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: Deploy on push
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: alpine-rsync
|
|
if: contains(gitea.event.head_commit.message, '[deploy]')
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup SSH
|
|
env:
|
|
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
run: |
|
|
mkdir -p ~/.ssh
|
|
printf "%s" "$SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519
|
|
chmod 600 ~/.ssh/id_ed25519
|
|
ssh-keyscan -p 22 "rchou.net" >> ~/.ssh/known_hosts
|
|
chmod 644 ~/.ssh/known_hosts
|
|
|
|
- name: Debug key + ssh
|
|
run: |
|
|
ssh -V
|
|
ls -la ~/.ssh
|
|
head -5 ~/.ssh/id_ed25519
|
|
ssh -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no deploy@rchou.net "echo ok"
|
|
|
|
- name: Test SSH
|
|
run: ssh -i ~/.ssh/id_ed25519 deploy@rchou.net "echo 'SSH works!'"
|
|
|
|
- name: Rsync to server
|
|
env:
|
|
SSH_TARGET_DIR: /home/cab/docker/websites/portfolio-src
|
|
RSYNC_SOURCE: .
|
|
run: |
|
|
rsync -rz --delete \
|
|
--no-times --no-perms --no-owner --no-group \
|
|
--omit-dir-times --mkpath \
|
|
-e "ssh -i ~/.ssh/id_ed25519 -p 22" \
|
|
"$RSYNC_SOURCE"/ "deploy@rchou.net:${SSH_TARGET_DIR}/"
|