Add custom deployment workflow
Some checks failed
Build and Deploy to Web Server / deploy (push) Has been cancelled

This commit is contained in:
2025-08-11 16:56:23 +09:30
parent ddeefb0044
commit 9537648437

View File

@@ -0,0 +1,34 @@
name: Build and Deploy to Web Server
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install, build, and upload your site
uses: withastro/action@v4
- name: Set up SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -H "${{ secrets.DEPLOY_HOST }}" >> ~/.ssh/known_hosts
- name: Install rsync
run: |
apt-get update
apt-get install -y rsync
- name: Deploy via rsync
run: |
rsync -avz --delete --exclude '.git' --exclude '.gitea' --exclude 'README.md' --exclude 'LICENSE.md' --exclude 'LICENSE' --exclude '.github' --exclude '.gitignore' --exclude '.gitattributes' --exclude 'deploy.yml' ./dist/ ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }}:${{ secrets.DEPLOY_DIRECTORY }}