Compare commits
7 Commits
3c6654ba47
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 995d4613e5 | |||
| 557827d9fd | |||
| a6d1144bff | |||
| fa145682b5 | |||
| d50c042524 | |||
| fc07d1aa5d | |||
| 59cdcd19e3 |
@@ -6,36 +6,40 @@ 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 }}
|
||||
run: |
|
||||
mkdir -p ~/.ssh
|
||||
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519
|
||||
printf "%s" "$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: 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/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
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.DS_Store
|
||||
Reference in New Issue
Block a user