[deploy]
Some checks failed
Deploy on push / deploy (push) Failing after 4s

This commit is contained in:
2025-08-19 22:42:20 +08:00
parent 59cdcd19e3
commit fc07d1aa5d
2 changed files with 5 additions and 10 deletions

View File

@@ -6,18 +6,13 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
runs-on: alpine-rsync
if: contains(gitea.event.head_commit.message, '[deploy]')
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install ssh + rsync
run: |
sudo apt-get update
sudo apt-get install -y openssh-client rsync
- name: Setup SSH
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
@@ -25,17 +20,16 @@ jobs:
mkdir -p ~/.ssh
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan -p 22 "rchou.org" >> ~/.ssh/known_hosts
ssh-keyscan -p 22 "rchou.net" >> ~/.ssh/known_hosts
chmod 644 ~/.ssh/known_hosts
- name: Rsync to server
env:
SSH_TARGET_DIR: /home/cab/docker/portfolio/src
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.org:${SSH_TARGET_DIR}/"
"$RSYNC_SOURCE"/ "deploy@rchou.net:${SSH_TARGET_DIR}/"

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.DS_Store